fix(community): Trim emojis in channels

Fixes: #11443
This commit is contained in:
Boris Melnik 2023-07-11 14:33:51 +03:00
parent f829909aa7
commit e109865f73
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ QtObject {
function createCommunityChannel(channelName, channelDescription, channelEmoji, channelColor, function createCommunityChannel(channelName, channelDescription, channelEmoji, channelColor,
categoryId) { categoryId) {
chatCommunitySectionModule.createCommunityChannel(channelName, channelDescription, chatCommunitySectionModule.createCommunityChannel(channelName, channelDescription,
channelEmoji, channelColor, categoryId); channelEmoji.trim(), channelColor, categoryId);
} }
function editCommunityChannel(chatId, newName, newDescription, newEmoji, newColor, function editCommunityChannel(chatId, newName, newDescription, newEmoji, newColor,