Folder updates

This commit is contained in:
Ali
2023-03-28 23:41:04 +04:00
parent 8ca477e686
commit 4ccd0bd804
23 changed files with 606 additions and 237 deletions

View File

@@ -256,6 +256,7 @@ private enum PreferencesKeyValues: Int32 {
case globalMessageAutoremoveTimeoutSettings = 27
case accountSpecificCacheStorageSettings = 28
case linksConfiguration = 29
case chatListFilterUpdates = 30
}
public func applicationSpecificPreferencesKey(_ value: Int32) -> ValueBoxKey {
@@ -402,6 +403,12 @@ public struct PreferencesKeys {
key.setInt32(0, value: PreferencesKeyValues.linksConfiguration.rawValue)
return key
}()
public static let chatListFilterUpdates: ValueBoxKey = {
let key = ValueBoxKey(length: 4)
key.setInt32(0, value: PreferencesKeyValues.chatListFilterUpdates.rawValue)
return key
}()
}
private enum SharedDataKeyValues: Int32 {