mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(mobile): setting to always display remote assets (#3044)
This commit is contained in:
parent
5869648f19
commit
615893be38
6 changed files with 26 additions and 6 deletions
|
|
@ -44,7 +44,8 @@ enum AppSettingsEnum<T> {
|
|||
0,
|
||||
),
|
||||
advancedTroubleshooting<bool>(StoreKey.advancedTroubleshooting, null, false),
|
||||
logLevel<int>(StoreKey.logLevel, null, 5) // Level.INFO = 5
|
||||
logLevel<int>(StoreKey.logLevel, null, 5), // Level.INFO = 5
|
||||
preferRemoteImage<bool>(StoreKey.preferRemoteImage, null, false),
|
||||
;
|
||||
|
||||
const AppSettingsEnum(this.storeKey, this.hiveKey, this.defaultValue);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue