diff --git a/Telegram/SourceFiles/data/data_message_reactions.cpp b/Telegram/SourceFiles/data/data_message_reactions.cpp index 7aa820101..664c68715 100644 --- a/Telegram/SourceFiles/data/data_message_reactions.cpp +++ b/Telegram/SourceFiles/data/data_message_reactions.cpp @@ -181,6 +181,13 @@ PossibleItemReactionsRef LookupPossibleReactions( } return true; }); + for (const auto &id : allowed.some) { + if (!added.contains(id)) { + if (const auto temp = reactions->lookupTemporary(id)) { + result.recent.push_back(temp); + } + } + } result.customAllowed = (allowed.type == AllowedReactionsType::All) && premiumPossible; }