From aaed3d7fd12c6cd89f5b23755c34abfb08280041 Mon Sep 17 00:00:00 2001 From: Ali <> Date: Tue, 6 Sep 2022 18:18:43 +0400 Subject: [PATCH] Fix typo --- .../Sources/ApiUtils/ReactionsMessageAttribute.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/TelegramCore/Sources/ApiUtils/ReactionsMessageAttribute.swift b/submodules/TelegramCore/Sources/ApiUtils/ReactionsMessageAttribute.swift index 96aa671fe7..773205e5cf 100644 --- a/submodules/TelegramCore/Sources/ApiUtils/ReactionsMessageAttribute.swift +++ b/submodules/TelegramCore/Sources/ApiUtils/ReactionsMessageAttribute.swift @@ -73,7 +73,7 @@ public func mergedMessageReactionsAndPeers(accountPeer: EnginePeer?, message: Me recentPeers.append((reaction.value, accountPeer)) } } - if reaction.count > selfCount + 1 { + if reaction.count >= selfCount + 1 { if let peer = message.peers[message.id.peerId] { recentPeers.append((reaction.value, EnginePeer(peer))) }