diff --git a/submodules/ChatListUI/Sources/Node/ChatListNode.swift b/submodules/ChatListUI/Sources/Node/ChatListNode.swift index 5c21baa87c..a210be45bb 100644 --- a/submodules/ChatListUI/Sources/Node/ChatListNode.swift +++ b/submodules/ChatListUI/Sources/Node/ChatListNode.swift @@ -1341,7 +1341,7 @@ public final class ChatListNode: ListView { } let storageInfo: Signal - if "".isEmpty && case .chatList(groupId: .root) = location, chatListFilter == nil { + if "".isEmpty, case .chatList(groupId: .root) = location, chatListFilter == nil { let totalSizeSignal = combineLatest(context.account.postbox.mediaBox.storageBox.totalSize(), context.account.postbox.mediaBox.cacheStorageBox.totalSize()) |> map { a, b -> Int64 in return a + b