Skip to content

Commit ac8f158

Browse files
authored
Set autolock to a default of 30 minutes (#1243)
1 parent 25d32e4 commit ac8f158

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/Menu.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class Menu implements Module {
1414
smartFilter: UserSettings.items.smartFilter !== false,
1515
enableContextMenu: UserSettings.items.enableContextMenu === true,
1616
theme: UserSettings.items.theme || (isSafari ? "flat" : "normal"),
17-
autolock: Number(UserSettings.items.autolock) || 0,
17+
autolock: Number(UserSettings.items.autolock) || 30,
1818
backupDisabled: await ManagedStorage.get("disableBackup", false),
1919
exportDisabled: await ManagedStorage.get("disableExport", false),
2020
enforcePassword: await ManagedStorage.get("enforcePassword", false),

0 commit comments

Comments
 (0)