diff --git a/Telegram/SourceFiles/history/history.cpp b/Telegram/SourceFiles/history/history.cpp index 569e53d4ea..ce51ea06ad 100644 --- a/Telegram/SourceFiles/history/history.cpp +++ b/Telegram/SourceFiles/history/history.cpp @@ -2589,7 +2589,7 @@ bool History::useTopPromotion() const { } else if (const auto channel = peer->asChannel()) { return !isPinnedDialog(FilterId()) && !channel->amIn(); } else if (const auto user = peer->asUser()) { - return !isPinnedDialog(FilterId()) && user->isBot(); + return !isPinnedDialog(FilterId()) && user->isBot() && isEmpty(); } return false; }