Skip to content

Commit

Permalink
Set autolock to a default of 30 minutes (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
mymindstorm authored Jul 29, 2024
1 parent 25d32e4 commit ac8f158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/Menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class Menu implements Module {
smartFilter: UserSettings.items.smartFilter !== false,
enableContextMenu: UserSettings.items.enableContextMenu === true,
theme: UserSettings.items.theme || (isSafari ? "flat" : "normal"),
autolock: Number(UserSettings.items.autolock) || 0,
autolock: Number(UserSettings.items.autolock) || 30,
backupDisabled: await ManagedStorage.get("disableBackup", false),
exportDisabled: await ManagedStorage.get("disableExport", false),
enforcePassword: await ManagedStorage.get("enforcePassword", false),
Expand Down

0 comments on commit ac8f158

Please sign in to comment.