diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-08-03 19:46:54 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-08-03 19:46:54 +0200 |
commit | 439574d9b7f2ac4a95d97cb56e57cf152bb01ad2 (patch) | |
tree | 937bad8bc0e7c443c7576046dc3afef70d0d0e59 /src-vue | |
parent | 869300c848429d18734fd0d02f4c277f21357568 (diff) | |
parent | efb193b517087d47f30f0542517c389bbfe5cde1 (diff) | |
download | FlightCore-439574d9b7f2ac4a95d97cb56e57cf152bb01ad2.tar.gz FlightCore-439574d9b7f2ac4a95d97cb56e57cf152bb01ad2.zip |
Merge branch 'main' into feat/launch-parameters
Diffstat (limited to 'src-vue')
-rw-r--r-- | src-vue/src/plugins/modules/pull_requests.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-vue/src/plugins/modules/pull_requests.ts b/src-vue/src/plugins/modules/pull_requests.ts index 3f3ba259..4caec0b0 100644 --- a/src-vue/src/plugins/modules/pull_requests.ts +++ b/src-vue/src/plugins/modules/pull_requests.ts @@ -54,7 +54,7 @@ export const pullRequestModule = { // Send notification telling the user to wait for the process to finish const notification = showNotification(`Installing launcher PR ${pull_request.number}`, 'Please wait', 'info', 0); - await invoke("apply_launcher_pr", { pullRequest: pull_request, gameInstallPath: store.state.game_install.game_path }) + await invoke("apply_launcher_pr", { pullRequest: pull_request, gameInstall: store.state.game_install }) .then((message) => { console.log(message); // Show user notification if mod install completed. @@ -72,7 +72,7 @@ export const pullRequestModule = { // Send notification telling the user to wait for the process to finish const notification = showNotification(`Installing mods PR ${pull_request.number}`, 'Please wait', 'info', 0); - await invoke("apply_mods_pr", { pullRequest: pull_request, gameInstallPath: store.state.game_install.game_path }) + await invoke("apply_mods_pr", { pullRequest: pull_request, gameInstall: store.state.game_install }) .then((message) => { // Show user notification if mod install completed. showNotification( |