From 6f27e310ae2e35c86af492933df4b7275d25e212 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 1 Aug 2017 21:13:27 +0300 Subject: [PATCH] Send reply and forward when choosing bot command. --- Telegram/SourceFiles/history/history_widget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index e5184391e..2eb779830 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -953,7 +953,8 @@ void HistoryWidget::onMentionInsert(UserData *user) { void HistoryWidget::onHashtagOrBotCommandInsert(QString str, FieldAutocomplete::ChooseMethod method) { // Send bot command at once, if it was not inserted by pressing Tab. if (str.at(0) == '/' && method != FieldAutocomplete::ChooseMethod::ByTab) { - App::sendBotCommand(_peer, nullptr, str); + App::sendBotCommand(_peer, nullptr, str, replyToId()); + App::main()->finishForwarding(_history, _silent->checked()); setFieldText(_field->getTextWithTagsPart(_field->textCursor().position())); } else { _field->insertTag(str);