Skip to content

Commit

Permalink
Desktop: Disable featureFlag.autoUpdaterServiceEnabled for now
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent22 committed Feb 3, 2025
1 parent d589891 commit 7994c0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/app-desktop/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,9 @@ class Application extends BaseApplication {
value: Setting.value('flagOpenDevTools'),
});

// Always disable for now - and disable too for the few apps that may have the flag enabled.
Setting.setValue('featureFlag.autoUpdaterServiceEnabled', false);

// Note: Auto-update is a misnomer in the code.
// The code below only checks, if a new version is available.
// We only allow Windows and macOS users to automatically check for updates
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/models/settings/builtInMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1672,7 +1672,7 @@ const builtInMetadata = (Setting: typeof SettingType) => {
'featureFlag.autoUpdaterServiceEnabled': {
value: false,
type: SettingItemType.Bool,
public: true,
public: false,
storage: SettingStorage.File,
appTypes: [AppType.Desktop],
label: () => 'Enable auto-updates',
Expand Down

0 comments on commit 7994c0b

Please sign in to comment.