feat: disabling button when installing

This commit is contained in:
Chubby Granny Chaser
2025-04-06 23:55:39 +01:00
parent e7427b8184
commit a55b5dafa0
4 changed files with 6 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
import { Downloader, DownloadError } from "@shared";
import { Downloader, DownloadError, FILE_EXTENSIONS_TO_EXTRACT } from "@shared";
import { WindowManager } from "../window-manager";
import { publishDownloadCompleteNotification } from "../notifications";
import type { Download, DownloadProgress, UserPreferences } from "@types";
@@ -22,7 +22,6 @@ import { logger } from "../logger";
import { db, downloadsSublevel, gamesSublevel, levelKeys } from "@main/level";
import { sortBy } from "lodash-es";
import { TorBoxClient } from "./torbox";
import { FILE_EXTENSIONS_TO_EXTRACT } from "@shared";
import { GameFilesManager } from "../game-files-manager";
export class DownloadManager {