diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-10-15 21:56:00 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-10-15 21:56:00 +0200 |
commit | 9d15ffbbdc4e4d26ec753be0a74a64775aa74669 (patch) | |
tree | cc42d8c714cea9155f2f09972cf9875fdcbf391e /src-vue/src/views/RepairView.vue | |
parent | d6bc5b46a4fc4b75dcba0380063cfc7e8bde212c (diff) | |
parent | 305a3847ee2897092fd652639051bc5d77f48434 (diff) | |
download | FlightCore-9d15ffbbdc4e4d26ec753be0a74a64775aa74669.tar.gz FlightCore-9d15ffbbdc4e4d26ec753be0a74a64775aa74669.zip |
Merge branch 'main' into feat/launch-parametersfeat/launch-parameters
Diffstat (limited to 'src-vue/src/views/RepairView.vue')
-rw-r--r-- | src-vue/src/views/RepairView.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-vue/src/views/RepairView.vue b/src-vue/src/views/RepairView.vue index ce7e154d..341dff2d 100644 --- a/src-vue/src/views/RepairView.vue +++ b/src-vue/src/views/RepairView.vue @@ -75,7 +75,7 @@ export default defineComponent({ 0 ); - let install_northstar_result = invoke("install_northstar_caller", { gameInstall: this.$store.state.game_install, northstarPackageName: ReleaseCanal.RELEASE }); + let install_northstar_result = invoke("install_northstar_wrapper", { gameInstall: this.$store.state.game_install, northstarPackageName: ReleaseCanal.RELEASE }); appWindow.listen<InstallProgress>( 'northstar-install-download-progress', @@ -102,7 +102,7 @@ export default defineComponent({ }); }, async cleanUpDownloadFolder() { - await invoke("clean_up_download_folder_caller", { gameInstall: this.$store.state.game_install, force: true }).then((message) => { + await invoke("clean_up_download_folder_wrapper", { gameInstall: this.$store.state.game_install, force: true }).then((message) => { // Show user notification if task completed. showNotification(this.$t('generic.done'), this.$t('generic.done')); }) |