diff --git a/Telegram/SourceFiles/history/history_item.cpp b/Telegram/SourceFiles/history/history_item.cpp index 3bc21ef7ea..ecc1343447 100644 --- a/Telegram/SourceFiles/history/history_item.cpp +++ b/Telegram/SourceFiles/history/history_item.cpp @@ -838,6 +838,8 @@ bool HistoryItem::canDelete() const { return false; } else if (isService() && !isRegular()) { return false; + } else if (topicRootId() == id) { + return false; } else if (!isHistoryEntry() && !isScheduled()) { return false; }