Send reply and forward when choosing bot command.

This commit is contained in:
John Preston 2017-08-01 21:13:27 +03:00
parent 96a2af842f
commit 6f27e310ae
1 changed files with 2 additions and 1 deletions

View File

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