[Backport staging] Fix macos update check exploding (#945)

Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
ElementRobot 2023-05-05 14:28:25 +01:00 committed by GitHub
parent da9ab70b39
commit 068fc63a53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ async function safeCheckForUpdate(): Promise<void> {
try { try {
const res = await global.fetch(feedUrl); const res = await global.fetch(feedUrl);
const { currentRelease } = await res.json(); const { currentRelease } = await res.json();
const latestVersionDownloaded = latestUpdateDownloaded.releaseName; const latestVersionDownloaded = latestUpdateDownloaded?.releaseName;
console.info( console.info(
`Latest version from release download: ${currentRelease} (current: ${app.getVersion()}, most recent downloaded ${latestVersionDownloaded}})`, `Latest version from release download: ${currentRelease} (current: ${app.getVersion()}, most recent downloaded ${latestVersionDownloaded}})`,
); );
@ -131,7 +131,7 @@ interface ICachedUpdate {
} }
// cache the latest update which has been downloaded as electron offers no api to read it // cache the latest update which has been downloaded as electron offers no api to read it
let latestUpdateDownloaded: ICachedUpdate; let latestUpdateDownloaded: ICachedUpdate | undefined;
autoUpdater autoUpdater
.on("update-available", function () { .on("update-available", function () {
ipcChannelSendUpdateStatus(true); ipcChannelSendUpdateStatus(true);