aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/views/RepairView.vue
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2023-10-15 21:56:00 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2023-10-15 21:56:00 +0200
commit9d15ffbbdc4e4d26ec753be0a74a64775aa74669 (patch)
treecc42d8c714cea9155f2f09972cf9875fdcbf391e /src-vue/src/views/RepairView.vue
parentd6bc5b46a4fc4b75dcba0380063cfc7e8bde212c (diff)
parent305a3847ee2897092fd652639051bc5d77f48434 (diff)
downloadFlightCore-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.vue4
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'));
})