diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-01-04 20:58:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 20:58:54 +0100 |
commit | 4a63e92ea30fc65cf945b163d2757f17dd3c68cd (patch) | |
tree | ba920c2872f8bd9f6ee4ea338d630b4887e50010 /src-vue/src/plugins | |
parent | 131b101045bbc4419f98afe58557a8d532af9bd6 (diff) | |
download | FlightCore-4a63e92ea30fc65cf945b163d2757f17dd3c68cd.tar.gz FlightCore-4a63e92ea30fc65cf945b163d2757f17dd3c68cd.zip |
refactor: Remove unnecessary caller function pattern (#128)
* refactor: Remove unnecessary caller function
Instead call `disable_all_but_core` directly
* refactor: Remove unnecessary caller function
Instead call `get_installed_mods_and_properties` directly
* refactor: Remove unused exposed backend function
* refactor: Remove unnecessary caller function
Instead call `set_mod_enabled_status` directly
* refactor: Remove unnecessary caller function
Instead call `verify_game_files` directly
* refactor: Remove unnecessary caller function
Instead call `get_log_list` directly
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[]); }) |