diff --git a/pxy_bots/views.py b/pxy_bots/views.py index 5bb34d9..4e5782b 100644 --- a/pxy_bots/views.py +++ b/pxy_bots/views.py @@ -49,7 +49,7 @@ async def telegram_webhook(request, bot_name): text = update.message.text or "" # 🚀 Citizen bot - if bot_name == "pepebasurita": + if bot_name == "PepeBasuritaCoinsBot": if text == "/start": await start(update) elif text == "/help": @@ -70,7 +70,7 @@ async def telegram_webhook(request, bot_name): await update.message.reply_text(bot_response) # 🚚 City collector bot - elif bot_name == "pepecamioncito": + elif bot_name == "PepeCamioncitoBot": if text == "/start": await start(update) elif text == "/help": @@ -85,7 +85,7 @@ async def telegram_webhook(request, bot_name): await city_eco_score(update) # 🚛 Private collector bot - elif bot_name == "pepemotito": + elif bot_name == "PepeMotitoBot": if text == "/start": await start(update) elif text == "/help":