aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bot.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bot.py b/bot.py
index d7590bf..ee7d055 100644
--- a/bot.py
+++ b/bot.py
@@ -177,11 +177,12 @@ def inline_query(update: telegram.Update, context: CallbackContext):
def message(update: telegram.Update, context: CallbackContext):
- text = update.effective_message.text
+ if update.effective_chat.type == telegram.Chat.PRIVATE:
+ text = update.effective_message.text
- logger.info('Got query %s', text)
+ logger.info('Got query %s', text)
- update.effective_message.reply_video(BytesIO(make_video(text, STYLES[0].id)))
+ update.effective_message.reply_video(BytesIO(make_video(text, 'classic')))
@app.route('/')