From 67bda19458bb9230e93430ccde5a4c47cf627f41 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 26 Mar 2018 02:01:13 +0400 Subject: [PATCH] Fix inline bot messages with previews. --- Telegram/SourceFiles/history/history_message.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Telegram/SourceFiles/history/history_message.cpp b/Telegram/SourceFiles/history/history_message.cpp index 489f8abffc..92a8f861b9 100644 --- a/Telegram/SourceFiles/history/history_message.cpp +++ b/Telegram/SourceFiles/history/history_message.cpp @@ -732,6 +732,8 @@ void HistoryMessage::refreshSentMedia(const MTPMessageMedia *media) { refreshMedia(media); if (wasGrouped) { Auth().data().groups().refreshMessage(this); + } else { + Auth().data().requestItemViewRefresh(this); } }