2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-01 15:05:56 +00:00

Display reply background emoji.

This commit is contained in:
John Preston
2023-10-24 11:47:11 +04:00
parent 60fb5fdaf0
commit 9c23de7f1a
6 changed files with 211 additions and 10 deletions

View File

@@ -711,7 +711,7 @@ not_null<UserData*> Session::processUser(const MTPUser &data) {
flags |= UpdateFlag::Color;
decorationsUpdated = true;
}
if (result->changeBackgroundEmoji(data.vbackground_emoji_id())) {
if (result->changeBackgroundEmojiId(data.vbackground_emoji_id())) {
flags |= UpdateFlag::BackgroundEmoji;
decorationsUpdated = true;
}
@@ -997,7 +997,7 @@ not_null<PeerData*> Session::processChat(const MTPChat &data) {
flags |= UpdateFlag::Color;
decorationsUpdated = true;
}
if (result->changeBackgroundEmoji(data.vbackground_emoji_id())) {
if (result->changeBackgroundEmojiId(data.vbackground_emoji_id())) {
flags |= UpdateFlag::BackgroundEmoji;
decorationsUpdated = true;
}