Skip to content

Commit

Permalink
Merge pull request #1618 from ebkr/fix-update-all-stringification
Browse files Browse the repository at this point in the history
Fix version number stringification when updating all installed mods
  • Loading branch information
anttimaki authored Jan 15, 2025
2 parents 14204e6 + fa65165 commit 79f25c8
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 79f25c8

Please sign in to comment.