From 864f9f199cc30f4a0b91127f4340df277d650385 Mon Sep 17 00:00:00 2001 From: Thoronium <107363768+NotThorny@users.noreply.github.com> Date: Sun, 9 Apr 2023 17:22:31 -0600 Subject: [PATCH] Fix mods appearing suck on extraction --- src/utils/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/download.ts b/src/utils/download.ts index 75c50b8..c4957fc 100644 --- a/src/utils/download.ts +++ b/src/utils/download.ts @@ -90,7 +90,7 @@ export default class DownloadHandler { } = payload // Find the download that is not extracting and set it's status as such - const index = this.downloads.findIndex((download) => download.path === obj.file || obj.new_folder) + const index = this.downloads.findIndex((download) => download.path === obj.file) this.downloads[index].status = 'finished' }) }