Skip to content

Commit

Permalink
Merge pull request ebkr#1506 from ebkr/fix-argument
Browse files Browse the repository at this point in the history
Fix method argument
  • Loading branch information
anttimaki authored Oct 23, 2024
2 parents abea4c3 + 698b887 commit e1ed3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/DownloadModModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ let assignId = 0;
const resolvedAuthorModNameString = `${manifestMod.getAuthorName()}-${manifestMod.getDisplayName()}`;
const olderInstallOfMod = profileModList.find(value => `${value.getAuthorName()}-${value.getDisplayName()}` === resolvedAuthorModNameString);
if (manifestMod.getName().toLowerCase() !== 'bbepis-bepinexpack') {
const result = await ProfileInstallerProvider.instance.uninstallMod(manifestMod, profile);
const result = await ProfileInstallerProvider.instance.uninstallMod(manifestMod, profile.asImmutableProfile());
if (result instanceof R2Error) {
return reject(result);
}
Expand Down

0 comments on commit e1ed3b4

Please sign in to comment.