From 8c258b528b88745bae566a3dc033306295b2f36a Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Thu, 17 Dec 2020 11:46:27 -0500 Subject: [PATCH] fix: fix community messages appearing in the normal chat list --- src/app/chat/view.nim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/chat/view.nim b/src/app/chat/view.nim index 4c1a9b6067..1321154f1d 100644 --- a/src/app/chat/view.nim +++ b/src/app/chat/view.nim @@ -487,6 +487,8 @@ QtObject: proc updateChats*(self: ChatsView, chats: seq[Chat], triggerChange:bool = true) = for chat in chats: + if (chat.communityId != ""): + return self.upsertChannel(chat.id) self.chats.updateChat(chat, triggerChange) if(self.activeChannel.id == chat.id):