diff --git a/Telegram/SourceFiles/history/view/history_view_message.cpp b/Telegram/SourceFiles/history/view/history_view_message.cpp index b8c22a68d..f3582b286 100644 --- a/Telegram/SourceFiles/history/view/history_view_message.cpp +++ b/Telegram/SourceFiles/history/view/history_view_message.cpp @@ -2367,7 +2367,9 @@ bool Message::hasFromPhoto() const { case Context::SavedSublist: case Context::ScheduledTopic: { const auto item = data(); - if (item->isPostHidingAuthor()) { + if (item->isSponsored()) { + return false; + } else if (item->isPostHidingAuthor()) { return false; } else if (item->isPost()) { return true;