mirror of
https://github.com/danog/telegram-tt.git
synced 2024-12-03 10:07:55 +01:00
Action Message: Fix rendering emojis (#2040)
This commit is contained in:
parent
6eeae64c16
commit
cd2e2a4928
@ -147,7 +147,9 @@ export function renderActionMessageText(
|
|||||||
? renderMigratedContent(targetChatId, noLinks)
|
? renderMigratedContent(targetChatId, noLinks)
|
||||||
: 'another chat',
|
: 'another chat',
|
||||||
);
|
);
|
||||||
content.push(...processed);
|
processed.forEach((part) => {
|
||||||
|
content.push(...renderText(part));
|
||||||
|
});
|
||||||
|
|
||||||
if (options.asPlainText) {
|
if (options.asPlainText) {
|
||||||
return content.join('').trim();
|
return content.join('').trim();
|
||||||
|
Loading…
Reference in New Issue
Block a user