aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src-vue/src/plugins/modules/pull_requests.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/plugins/modules/pull_requests.ts b/src-vue/src/plugins/modules/pull_requests.ts
index ff9ec322..57d5fa07 100644
--- a/src-vue/src/plugins/modules/pull_requests.ts
+++ b/src-vue/src/plugins/modules/pull_requests.ts
@@ -37,7 +37,7 @@ export const pullRequestModule = {
});
},
async downloadLauncherPR(state: PullRequestStoreState, pull_request: PullsApiResponseElement) {
- await invoke<string>("get_launcher_download_link", { pullRequest: pull_request })
+ await invoke<string>("get_launcher_download_link", { commitSha: pull_request.head.sha })
.then((url) => {
// Open URL in default HTTPS handler (i.e. default browser)
shell.open(url);