Skip to content

Commit

Permalink
Merge pull request #1613 from ebkr/fix-state-file-management
Browse files Browse the repository at this point in the history
Fix management of installation state tracking file
  • Loading branch information
anttimaki authored Jan 15, 2025
2 parents 27d1d87 + 97aa6a0 commit 14204e6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/store/modules/ProfileModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,7 @@ export default {
}
}

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

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

await dispatch('resolveConflicts', params);
await dispatch('resolveConflicts', {mods: lastSuccessfulUpdate, profile});
},

// Return ThunderstoreCombos pointing to the latest available version.
Expand Down Expand Up @@ -425,7 +424,7 @@ export default {
}
}

await dispatch('resolveConflicts', params);
await dispatch('resolveConflicts', {mods: lastSuccessfulUpdate, profile});
},

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

0 comments on commit 14204e6

Please sign in to comment.