ChatList: Fix emoji in usernames on Windows (#2228)

This commit is contained in:
Alexander Zinchuk 2022-12-31 16:14:55 +01:00
parent 5fcdd0fecd
commit 76e3c46ef5

View File

@ -264,5 +264,5 @@ function processPlaceholder(text: string, placeholder: string, replaceValue?: Te
}
content.push(text.substring(placeholderPosition + placeholder.length));
return content;
return content.flat();
}