From 7316d24ca49e8773b18970b01c67d6b1689e7982 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 19 Aug 2019 15:25:48 +0300 Subject: [PATCH] Quick fix for 'Cant forward here' error. --- .../SourceFiles/history/history_widget.cpp | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 8556b5712..7263e7aa0 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -2858,13 +2858,15 @@ void HistoryWidget::send(bool silent, Qt::KeyboardModifiers modifiers) { message.silent = silent; message.handleSupportSwitch = Support::HandleSwitch(modifiers); - const auto error = GetErrorTextForForward( - _peer, - _toForward, - message.textWithTags); - if (!error.isEmpty()) { - ShowErrorToast(error); - return; + if (_canSendMessages) { + const auto error = GetErrorTextForForward( + _peer, + _toForward, + message.textWithTags); + if (!error.isEmpty()) { + ShowErrorToast(error); + return; + } } session().api().sendMessage(std::move(message)); @@ -5280,7 +5282,9 @@ void HistoryWidget::keyPressEvent(QKeyEvent *e) { const auto submitting = Ui::InputField::ShouldSubmit( session().settings().sendSubmitWay(), e->modifiers()); - send(false, e->modifiers()); + if (submitting) { + send(false, e->modifiers()); + } } } else if (e->key() == Qt::Key_O && e->modifiers() == Qt::ControlModifier) { chooseAttach();