Update 'bots/modules/feedback.py'

This commit is contained in:
bakatrouble 2021-03-28 17:43:51 +00:00
parent e72cb9a453
commit 0e1057401c

View File

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