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);