From 8b7d9fe0539153ee3e52ffa004b5f7f2fc2cfc32 Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Wed, 4 Jan 2023 12:19:15 +0400 Subject: [PATCH] Fix build --- submodules/ChatListUI/Sources/Node/ChatListNode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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