From 832ed03ea3f561a4c48bf93bfe1c3e2f0238cd10 Mon Sep 17 00:00:00 2001 From: Andrey Bocharnikov Date: Mon, 11 Mar 2024 17:02:00 +0400 Subject: [PATCH] fix(chat_section_module): Fix propagation of "muted" status in chat header (when handling chat_content details update) (#13904) #13559 --- src/app/modules/main/chat_section/chat_content/view.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/modules/main/chat_section/chat_content/view.nim b/src/app/modules/main/chat_section/chat_content/view.nim index d02a6062b4..b4b349ec0b 100644 --- a/src/app/modules/main/chat_section/chat_content/view.nim +++ b/src/app/modules/main/chat_section/chat_content/view.nim @@ -148,6 +148,7 @@ QtObject: self.chatDetails.setDescription(chatDto.description) self.chatDetails.setEmoji(chatDto.emoji) self.chatDetails.setColor(chatDto.color) + self.chatDetails.setMuted(chatDto.muted) proc updateChatDetailsName*(self: View, name: string) = self.chatDetails.setName(name)