From d5cf3e76e19ff61e8b9041f2c2bcf4c84bdedb31 Mon Sep 17 00:00:00 2001 From: Tasos Boulis Date: Fri, 14 Oct 2022 18:17:51 +0300 Subject: [PATCH] Fix issue where update progress was not displayed (#2286) --- src/main/downloadsManager.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/downloadsManager.ts b/src/main/downloadsManager.ts index a9a28c00..d37b6526 100644 --- a/src/main/downloadsManager.ts +++ b/src/main/downloadsManager.ts @@ -476,6 +476,7 @@ export class DownloadsManager extends JsonFileManager { update.totalBytes = total; update.receivedBytes = transferred; update.progress = Math.round(percent); + this.save(APP_UPDATE_KEY, update); this.shouldShowBadge(); } private noUpdateAvailable = () => {