feat: adding support to qiwi

This commit is contained in:
Chubby Granny Chaser
2024-08-18 16:19:06 +01:00
parent 76d3fead66
commit 6c24a523b7
8 changed files with 46 additions and 26 deletions

View File

@@ -101,6 +101,7 @@ const startGameDownload = async (
await downloadQueueRepository.delete({ game: { id: updatedGame!.id } });
await downloadQueueRepository.insert({ game: { id: updatedGame!.id } });
await DownloadManager.cancelDownload(updatedGame!.id);
await DownloadManager.startDownload(updatedGame!);
};