diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 1fa4664b9..85afb53e1 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -3224,7 +3224,11 @@ void HistoryWidget::stopRecording(bool send) { } void HistoryWidget::sendBotCommand(PeerData *peer, UserData *bot, const QString &cmd, MsgId replyTo) { // replyTo != 0 from ReplyKeyboardMarkup, == 0 from cmd links - if (!_peer || _peer != peer) return; + if (!_peer || _peer != peer) { + return; + } else if (showSlowmodeError()) { + return; + } bool lastKeyboardUsed = (_keyboard->forMsgId() == FullMsgId(_channel, _history->lastKeyboardId)) && (_keyboard->forMsgId() == FullMsgId(_channel, replyTo)); diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index 82b5029c1..e9f2e8909 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -681,6 +681,13 @@ void MainWidget::cancelForwarding(not_null history) { void MainWidget::finishForwarding(not_null history) { auto toForward = history->validateForwardDraft(); if (!toForward.empty()) { + if (history->peer->slowmodeSecondsLeft() + || (history->peer->slowmodeApplied() + && (toForward.size() > 1 + || history->latestSendingMessage() != nullptr))) { + return; + } + auto options = ApiWrap::SendOptions(history); session().api().forwardMessages(std::move(toForward), options); cancelForwarding(history);