diff options
Diffstat (limited to 'src-vue/src/plugins')
-rw-r--r-- | src-vue/src/plugins/store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index 18191555..ee4af283 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -252,7 +252,7 @@ export const store = createStore<FlightCoreStore>({ } // Call back-end for installed mods - await invoke("get_installed_mods_caller", { gameInstall: game_install }) + await invoke("get_installed_mods_and_properties", { gameInstall: game_install }) .then((message) => { state.installed_mods = (message as NorthstarMod[]); }) |