From f1518af8b3a9acbff570c9cd9990ad7903309bfd Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 4 Jul 2019 13:56:28 +0200 Subject: [PATCH] Mark mentions as read on reply-from-notification. --- Telegram/SourceFiles/window/notifications_manager.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Telegram/SourceFiles/window/notifications_manager.cpp b/Telegram/SourceFiles/window/notifications_manager.cpp index 6e6c550ca..86be1e18a 100644 --- a/Telegram/SourceFiles/window/notifications_manager.cpp +++ b/Telegram/SourceFiles/window/notifications_manager.cpp @@ -510,6 +510,11 @@ void Manager::notificationReplied( message.replyTo = (msgId > 0 && !history->peer->isUser()) ? msgId : 0; message.clearDraft = false; Auth().api().sendMessage(std::move(message)); + + const auto item = history->owner().message(history->channelId(), msgId); + if (item && item->isUnreadMention() && !item->isUnreadMedia()) { + Auth().api().markMediaRead(item); + } } void NativeManager::doShowNotification(HistoryItem *item, int forwardedCount) {