From cdde9f88417074ef80a2f602c37a1a48aa853071 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 24 Mar 2022 16:21:59 +0400 Subject: [PATCH] Reaction notifications are always silent. --- Telegram/SourceFiles/window/notifications_manager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/window/notifications_manager.cpp b/Telegram/SourceFiles/window/notifications_manager.cpp index 83ce22f132..eff5df4231 100644 --- a/Telegram/SourceFiles/window/notifications_manager.cpp +++ b/Telegram/SourceFiles/window/notifications_manager.cpp @@ -177,7 +177,8 @@ System::SkipState System::computeSkipState( return SkipState{ .value = value, .silent = (forceSilent - || (messageNotification && item->isSilent())), + || !messageNotification + || item->isSilent()), }; }; const auto showForMuted = messageNotification