Skip to content

Commit

Permalink
Fix version number stringification when updating all installed mods
Browse files Browse the repository at this point in the history
  • Loading branch information
anttimaki committed Jan 15, 2025
1 parent 14204e6 commit fa65165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/UpdateAllInstalledModsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class UpdateAllInstalledModsModal extends mixins(DownloadMixin)
const assignId = await this.$store.dispatch(
'download/addDownload',
modsWithUpdates.map(value => `${value.getMod().getName()} (${value.getVersion().toString()})`)
modsWithUpdates.map(value => `${value.getMod().getName()} (${value.getVersion().getVersionNumber().toString()})`)
);
this.$store.commit('download/setIsModProgressModalOpen', true);
Expand Down

0 comments on commit fa65165

Please sign in to comment.