Fix mods appearing suck on extraction

This commit is contained in:
Thoronium 2023-04-09 17:22:31 -06:00
parent 5d8e4d7311
commit 864f9f199c

View File

@ -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'
})
}