Action Message: Fix rendering emojis (#2040)

This commit is contained in:
Alexander Zinchuk 2022-09-20 14:59:09 +02:00
parent 6eeae64c16
commit cd2e2a4928

View File

@ -147,7 +147,9 @@ export function renderActionMessageText(
? renderMigratedContent(targetChatId, noLinks)
: 'another chat',
);
content.push(...processed);
processed.forEach((part) => {
content.push(...renderText(part));
});
if (options.asPlainText) {
return content.join('').trim();