Use sticker for red heart if there is no dedicated sticker for a colored heart.

This commit is contained in:
levlam 2021-09-17 17:18:39 +03:00
parent 6d21161f70
commit a54b37a8d8
1 changed files with 6 additions and 0 deletions

View File

@ -4067,6 +4067,12 @@ vector<FileId> StickersManager::get_animated_emoji_stickers(const StickerSet *st
result.push_back(sticker_id);
}
}
if (result.empty()) {
const static vector<string> heart_emojis{"πŸ’›", "πŸ’™", "πŸ’š", "πŸ’œ", "🧑", "πŸ–€", "🀎", "🀍"};
if (td::contains(heart_emojis, emoji)) {
return get_animated_emoji_stickers(sticker_set, "❀");
}
}
return result;
}