diff --git a/Telegram/SourceFiles/history/history_item.cpp b/Telegram/SourceFiles/history/history_item.cpp index 40a82f879f..1c129a0389 100644 --- a/Telegram/SourceFiles/history/history_item.cpp +++ b/Telegram/SourceFiles/history/history_item.cpp @@ -634,7 +634,9 @@ bool HistoryItem::canStopPoll() const { } bool HistoryItem::canDelete() const { - if (!IsServerMsgId(id) && serviceMsg()) { + if (isSponsored()) { + return false; + } else if (!IsServerMsgId(id) && serviceMsg()) { return false; } else if (!isHistoryEntry() && !isScheduled()) { return false;