Change default channel cache storage timeout

This commit is contained in:
Ali 2023-03-13 16:07:14 +04:00
parent 544e50d7b7
commit 760751f04d

View File

@ -25,7 +25,7 @@ public struct CacheStorageSettings: Codable, Equatable {
categoryStorageTimeout: [
.privateChats: Int32.max,
.groups: Int32(31 * 24 * 60 * 60),
.channels: Int32(31 * 24 * 60 * 60)
.channels: Int32(7 * 24 * 60 * 60)
]
)
}