fix(Communities): ensure community channels have community color

Fixes #3985
This commit is contained in:
Pascal Precht 2021-11-03 15:09:19 +01:00 committed by Iuri Matias
parent ac823079ac
commit 7416294513
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ proc mergeChat(community: var Community, chat: Chat): bool =
chat.canPost = community.chats[i].canPost
chat.categoryId = community.chats[i].categoryId
chat.position = community.chats[i].position
chat.color = community.communityColor
community.chats[i] = chat
return true