Skip to content

Commit

Permalink
Merge pull request ebkr#1386 from ebkr/fix-conflict-resolution
Browse files Browse the repository at this point in the history
Fix inadvertently skipping conflict resolution
  • Loading branch information
anttimaki committed Aug 13, 2024
2 parents ca35974 + e684004 commit 71890dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/store/modules/ProfileModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export default {
}

// IDK but sounds important.
await dispatch('resolveConflicts', lastSuccessfulUpdate);
await dispatch('resolveConflicts', params);
},

async enableModsOnActiveProfile(
Expand Down Expand Up @@ -270,7 +270,7 @@ export default {
}
}

await dispatch('resolveConflicts', lastSuccessfulUpdate);
await dispatch('resolveConflicts', params);
},

async loadLastSelectedProfile({commit, rootGetters}): Promise<string> {
Expand Down Expand Up @@ -390,7 +390,7 @@ export default {
}
}

await dispatch('resolveConflicts', lastSuccessfulUpdate);
await dispatch('resolveConflicts', params);
},

async updateActiveProfile({commit, rootGetters}, profileName: string) {
Expand Down

0 comments on commit 71890dd

Please sign in to comment.