From 95b3df10b25864b813aff78d4181686336ec33e4 Mon Sep 17 00:00:00 2001 From: AlexeyZavar Date: Sun, 18 Aug 2024 02:08:43 +0300 Subject: [PATCH] fix: message shot reactions --- Telegram/SourceFiles/history/history_item.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/history_item.cpp b/Telegram/SourceFiles/history/history_item.cpp index 9431e3280..b5a67a610 100644 --- a/Telegram/SourceFiles/history/history_item.cpp +++ b/Telegram/SourceFiles/history/history_item.cpp @@ -2646,7 +2646,7 @@ const std::vector &HistoryItem::reactions() const { } std::vector HistoryItem::reactionsWithLocal() const { - if (!_reactions) { + if (!_reactions || AyuFeatures::MessageShot::ignoreRender(AyuFeatures::MessageShot::RenderPart::Reactions)) { return {}; } auto result = _reactions->list();