diff --git a/bots/modules/feedback.py b/bots/modules/feedback.py index 34eebaa..603524c 100644 --- a/bots/modules/feedback.py +++ b/bots/modules/feedback.py @@ -39,6 +39,8 @@ class FeedbackBotModuleConfig(TelegramBotModuleConfig): update.effective_message.reply_text('I don\'t know in which chat to forward this message') def handle_external_message(self, update: Update, ctx: CallbackContext): + if update.effective_message.text and update.effective_message.text.startswith('/'): + return chat = self._get_chat(update) # last_message = FeedbackMessage.objects.filter(chat=chat).last() msg = update.message.forward(self.forward_chat_id)