From ff9bf23461def0bfd3882cf4f53ddab20181f041 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 21 Jan 2021 17:46:46 +0400 Subject: [PATCH] Don't show checks for incoming service messages. --- Telegram/SourceFiles/history/history_service.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/history/history_service.cpp b/Telegram/SourceFiles/history/history_service.cpp index 55403cdd9..4d6dd048d 100644 --- a/Telegram/SourceFiles/history/history_service.cpp +++ b/Telegram/SourceFiles/history/history_service.cpp @@ -792,8 +792,9 @@ bool HistoryService::updateDependencyItem() { } bool HistoryService::needCheck() const { - return (GetDependentData() != nullptr) - || Has(); + return out() + && ((GetDependentData() != nullptr) + || Has()); } QString HistoryService::inDialogsText(DrawInDialog way) const {