Skip to content

Commit 71890dd

Browse files
authored
Merge pull request #1386 from ebkr/fix-conflict-resolution
Fix inadvertently skipping conflict resolution
2 parents ca35974 + e684004 commit 71890dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/store/modules/ProfileModule.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export default {
216216
}
217217

218218
// IDK but sounds important.
219-
await dispatch('resolveConflicts', lastSuccessfulUpdate);
219+
await dispatch('resolveConflicts', params);
220220
},
221221

222222
async enableModsOnActiveProfile(
@@ -270,7 +270,7 @@ export default {
270270
}
271271
}
272272

273-
await dispatch('resolveConflicts', lastSuccessfulUpdate);
273+
await dispatch('resolveConflicts', params);
274274
},
275275

276276
async loadLastSelectedProfile({commit, rootGetters}): Promise<string> {
@@ -390,7 +390,7 @@ export default {
390390
}
391391
}
392392

393-
await dispatch('resolveConflicts', lastSuccessfulUpdate);
393+
await dispatch('resolveConflicts', params);
394394
},
395395

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

0 commit comments

Comments
 (0)