Skip to content

Commit e4cd29a

Browse files
fix: progress bar for update on linux
1 parent 5e15f44 commit e4cd29a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: packages/suite-desktop-core/src/modules/auto-updater.ts

+4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ export const init: ModuleInit = ({ mainWindowProxy, store }) => {
6565

6666
autoUpdater.logger = null;
6767

68+
if (process.platform === 'linux') {
69+
autoUpdater.disableDifferentialDownload = true;
70+
}
71+
6872
autoUpdater.setFeedURL(feedURL);
6973
logger.warn(SERVICE_NAME, [`Feed url: ${feedURL}`]);
7074

0 commit comments

Comments
 (0)