diff --git a/Telegram/SourceFiles/history.cpp b/Telegram/SourceFiles/history.cpp index 8f8d41a0b..7cdb4c22b 100644 --- a/Telegram/SourceFiles/history.cpp +++ b/Telegram/SourceFiles/history.cpp @@ -4363,6 +4363,10 @@ HistorySticker::HistorySticker(DocumentData *document) : HistoryMedia() data->thumb->load(); if (!data->sticker()->alt.isEmpty()) { _emoji = data->sticker()->alt; + int32 elen = 0; + if (EmojiPtr e = emojiFromText(_emoji.constData(), _emoji.constEnd(), elen)) { + _emoji = emojiString(e); + } } }