diff --git a/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp b/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp index 14c9552bb3..cea479bb47 100644 --- a/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp +++ b/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp @@ -2986,7 +2986,9 @@ void InnerWidget::searchInChat( if (peer->isSelf()) { const auto reactions = &peer->owner().reactions(); const auto list = [=] { - return reactions->list(Data::Reactions::Type::MyTags); + // Disable reactions as tags for now. + //return reactions->list(Data::Reactions::Type::MyTags); + return std::vector(); }; _searchTags = std::make_unique( &peer->owner(), diff --git a/Telegram/SourceFiles/history/history_item.cpp b/Telegram/SourceFiles/history/history_item.cpp index 35a2dc7db8..bf473a19b0 100644 --- a/Telegram/SourceFiles/history/history_item.cpp +++ b/Telegram/SourceFiles/history/history_item.cpp @@ -2430,7 +2430,8 @@ const std::vector &HistoryItem::reactions() const { } bool HistoryItem::reactionsAreTags() const { - return _flags & MessageFlag::ReactionsAreTags; + // Disable reactions as tags for now. + return false;// _flags & MessageFlag::ReactionsAreTags; } auto HistoryItem::recentReactions() const