From ab6d9ff73cb004e8578f9fa667c1661bb93015e9 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 6 Sep 2019 14:14:04 +0300 Subject: [PATCH] Fix sending first message in chat. --- Telegram/SourceFiles/history/history.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Telegram/SourceFiles/history/history.cpp b/Telegram/SourceFiles/history/history.cpp index 0df87b388..b1dd74e54 100644 --- a/Telegram/SourceFiles/history/history.cpp +++ b/Telegram/SourceFiles/history/history.cpp @@ -2607,17 +2607,16 @@ void History::dialogEntryApplied() { return; } if (!chatListMessage()) { + clear(ClearType::Unload); + addNewerSlice(QVector()); + addOlderSlice(QVector()); if (const auto channel = peer->asChannel()) { const auto inviter = channel->inviter; if (inviter > 0 && channel->amIn()) { if (const auto from = owner().userLoaded(inviter)) { - clear(ClearType::Unload); - addNewerSlice(QVector()); insertJoinedMessage(); } } - } else { - clear(ClearType::DeleteChat); } return; }