feat: pause seeding before deleting game

This commit is contained in:
Hachi-R
2024-11-09 14:29:45 -03:00
parent 518d919da5
commit f66bdd706b
3 changed files with 11 additions and 2 deletions

View File

@@ -21,11 +21,13 @@ export default function Downloads() {
const [showBinaryNotFoundModal, setShowBinaryNotFoundModal] = useState(false);
const [showDeleteModal, setShowDeleteModal] = useState(false);
const { removeGameInstaller } = useDownload();
const { removeGameInstaller, pauseSeeding } = useDownload();
const handleDeleteGame = async () => {
if (gameToBeDeleted.current)
if (gameToBeDeleted.current) {
await pauseSeeding(gameToBeDeleted.current);
await removeGameInstaller(gameToBeDeleted.current);
}
};
const { lastPacket } = useDownload();