Skip to content

Commit

Permalink
Fix mods appearing suck on extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
NotThorny committed Apr 9, 2023
1 parent 0783e78 commit 2fc8a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
})
}
Expand Down

0 comments on commit 2fc8a22

Please sign in to comment.