Skip to content

Commit 79f25c8

Browse files
authored
Merge pull request #1618 from ebkr/fix-update-all-stringification
Fix version number stringification when updating all installed mods
2 parents 14204e6 + fa65165 commit 79f25c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/views/UpdateAllInstalledModsModal.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default class UpdateAllInstalledModsModal extends mixins(DownloadMixin)
4545
4646
const assignId = await this.$store.dispatch(
4747
'download/addDownload',
48-
modsWithUpdates.map(value => `${value.getMod().getName()} (${value.getVersion().toString()})`)
48+
modsWithUpdates.map(value => `${value.getMod().getName()} (${value.getVersion().getVersionNumber().toString()})`)
4949
);
5050
5151
this.$store.commit('download/setIsModProgressModalOpen', true);

0 commit comments

Comments
 (0)