From 5a7fcc3a22f8996e9f03ba3c83453c72a8e57bb5 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 7 Mar 2019 13:02:55 +0400 Subject: [PATCH] Don't show fast share for own messages. --- Telegram/SourceFiles/history/view/history_view_message.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/history/view/history_view_message.cpp b/Telegram/SourceFiles/history/view/history_view_message.cpp index 5c9bc4b23..a4b2da3ab 100644 --- a/Telegram/SourceFiles/history/view/history_view_message.cpp +++ b/Telegram/SourceFiles/history/view/history_view_message.cpp @@ -1375,6 +1375,7 @@ bool Message::displayFastShare() const { } else if (const auto user = peer->asUser()) { if (const auto forwarded = item->Get()) { return !peer->isSelf() + && !item->out() && forwarded->originalSender->isChannel() && !forwarded->originalSender->isMegagroup(); } else if (user->botInfo && !item->out()) {