From cd5bae2fd7c5c0a62fa9e8dc5452c4b2f92aa139 Mon Sep 17 00:00:00 2001 From: Yaros Date: Sun, 16 Nov 2025 12:04:55 +0100 Subject: [PATCH] fix: corrupted AppSettingsEnum --- mobile/lib/services/app_settings.service.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mobile/lib/services/app_settings.service.dart b/mobile/lib/services/app_settings.service.dart index 0f81fb9a77..fc08193d11 100644 --- a/mobile/lib/services/app_settings.service.dart +++ b/mobile/lib/services/app_settings.service.dart @@ -52,10 +52,9 @@ enum AppSettingsEnum { useCellularForUploadVideos(StoreKey.useWifiForUploadVideos, null, false), useCellularForUploadPhotos(StoreKey.useWifiForUploadPhotos, null, false), readonlyModeEnabled(StoreKey.readonlyModeEnabled, "readonlyModeEnabled", false), - albumGridView(StoreKey.albumGridView, "albumGridView", false); + albumGridView(StoreKey.albumGridView, "albumGridView", false), backupRequireCharging(StoreKey.backupRequireCharging, null, false), - backupTriggerDelay(StoreKey.backupTriggerDelay, null, 30), - readonlyModeEnabled(StoreKey.readonlyModeEnabled, "readonlyModeEnabled", false); + backupTriggerDelay(StoreKey.backupTriggerDelay, null, 30); const AppSettingsEnum(this.storeKey, this.hiveKey, this.defaultValue);