fix(chat_section_module): Fix propagation of "muted" status in chat header (when handling chat_content details update) (#13904)

#13559
This commit is contained in:
Andrey Bocharnikov 2024-03-11 17:02:00 +04:00 committed by GitHub
parent af84d788ff
commit 832ed03ea3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -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)