diff --git a/src/main/UpdateChecker.ts b/src/main/UpdateChecker.ts index 227670b4..2bfa768b 100644 --- a/src/main/UpdateChecker.ts +++ b/src/main/UpdateChecker.ts @@ -157,7 +157,11 @@ export default class UpdateChecker { let responseString = this.alertOptions[result.response]; if (responseString === "Download") { if (this.alertDownloadUrl === null) { - await shell.openExternal("https://github.com/" + REPOSITORY + "/releases/latest"); + if (isBeta()) { + await shell.openExternal("https://github.com/" + REPOSITORY + "/releases"); + } else { + await shell.openExternal("https://github.com/" + REPOSITORY + "/releases/latest"); + } } else { await shell.openExternal(this.alertDownloadUrl); }