This commit is contained in:
Joan
2023-11-09 19:09:25 +01:00
parent 0c4c075fef
commit 1d1f06c1a8

View File

@@ -359,7 +359,7 @@ async def handle_conjunta(update: Update, context: CallbackContext):
worksheet.append_row([user_name, quantity, "" if socio else "NO"]) worksheet.append_row([user_name, quantity, "" if socio else "NO"])
await update.message.reply_text(f"Te has unido a la conjunta para '{product_name}' con {quantity} unidades.") await update.message.reply_text(f"Te has unido a la conjunta para '{product_name}' con {quantity} unidades.")
await send_message_to_admins(update, context, f"@{user_name} se ha apunta a la conjunta {product_name} - {conjunta_id} con {quantity} unidades") await send_message_to_admins(update, context, f"@{user_name} se ha apuntado a la conjunta {product_name} - {conjunta_id} con {quantity} unidades")
try: try:
await update_conjunta(update, context, conjunta_id) await update_conjunta(update, context, conjunta_id)
except Exception: except Exception: