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
nexus-labs-admin committed Nov 19, 2024
1 parent 2e7c1f4 commit 363835d
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 363835d

Please sign in to comment.