From 66159e96b86b3c866ec2f59cda91b8ef07a063e4 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Tue, 4 Aug 2020 15:25:15 -0700 Subject: [PATCH] dont consume the update message so early --- tipbot/commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tipbot/commands.py b/tipbot/commands.py index cb13a53..e0b1bfe 100644 --- a/tipbot/commands.py +++ b/tipbot/commands.py @@ -58,7 +58,6 @@ def register(update, context): if db.User.filter(telegram_id=uid, telegram_user=un): update.message.reply_text('You are already registered. Use /help to see available bot commands.') else: - update.message.reply_text('Your ID exists in the database already but your `first_name` attribute has changed. Updating.') try: u = db.User.get(telegram_id=uid) u.telegram_user = un