From c1ab1acd44e77c652b59b259f4b973ae976bc5b1 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 9 Sep 2019 17:43:39 +0300 Subject: [PATCH] Fix crash in scheduled messages 'Send Now'. --- Telegram/SourceFiles/history/history_message.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/history_message.cpp b/Telegram/SourceFiles/history/history_message.cpp index 7e95ed92b..dab3221f6 100644 --- a/Telegram/SourceFiles/history/history_message.cpp +++ b/Telegram/SourceFiles/history/history_message.cpp @@ -750,7 +750,7 @@ bool HistoryMessage::allowsForward() const { } bool HistoryMessage::allowsSendNow() const { - return isScheduled(); + return isScheduled() && !isSending() && !hasFailed(); } bool HistoryMessage::isTooOldForEdit(TimeId now) const {