Skip to content

Commit

Permalink
fix: progress bar for update on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-sanderson committed Dec 13, 2024
1 parent e6c74f1 commit 4691600
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/suite-desktop-core/src/modules/auto-updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ export const init: ModuleInit = ({ mainWindowProxy, store }) => {

autoUpdater.logger = null;

if (process.platform === 'linux') {
autoUpdater.disableDifferentialDownload = true;
}

autoUpdater.setFeedURL(feedURL);
logger.warn(SERVICE_NAME, [`Feed url: ${feedURL}`]);

Expand Down

0 comments on commit 4691600

Please sign in to comment.