From ad7053f8090f14300a0dfe24831ab221b83ffe91 Mon Sep 17 00:00:00 2001 From: Andrey Bocharnikov Date: Mon, 24 Jun 2024 20:15:03 +0400 Subject: [PATCH] fix(communityUI): Channel name is not changed in the top nav bar when editing a channel fixes #15146 --- src/app/modules/main/chat_section/chat_content/module.nim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/modules/main/chat_section/chat_content/module.nim b/src/app/modules/main/chat_section/chat_content/module.nim index f2937d4f1b..4c3089cb61 100644 --- a/src/app/modules/main/chat_section/chat_content/module.nim +++ b/src/app/modules/main/chat_section/chat_content/module.nim @@ -396,6 +396,8 @@ method onCommunityChannelEdited*(self: Module, chatDto: ChatDto) = self.view.chatDetails.setCanView(chatDto.canView) self.view.chatDetails.setCanPostReactions(chatDto.canPostReactions) self.view.chatDetails.setHideIfPermissionsNotMet(chatDto.hideIfPermissionsNotMet) + self.view.chatDetails.setName(chatDto.name) + self.view.chatDetails.setIcon(chatDto.icon) self.messagesModule.updateChatFetchMoreMessages() self.messagesModule.updateChatIdentifier()