feat: use enum

This commit is contained in:
Zamitto
2024-12-23 23:47:34 -03:00
parent 789bccf77a
commit 60e0b39f86
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import { registerEvent } from "../register-event";
import { gameRepository } from "../../repository";
import { DownloadManager } from "@main/services";
import { Downloader } from "@shared";
const resumeGameSeed = async (
_event: Electron.IpcMainInvokeEvent,
@@ -10,7 +11,7 @@ const resumeGameSeed = async (
where: {
id: gameId,
isDeleted: false,
downloader: 1,
downloader: Downloader.Torrent,
progress: 1,
},
});