We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86f8b9d commit 0dcb453Copy full SHA for 0dcb453
1 file changed
handlers/admin.py
@@ -21,8 +21,9 @@ async def joder(update: Update, context: ContextTypes.DEFAULT_TYPE):
21
return
22
23
message = " ".join(context.args)
24
+ formatted_message = f"@rozen dice: {message}"
25
try:
- await context.bot.send_message(chat_id=DC_GROUP_CHATID, text=message)
26
+ await context.bot.send_message(chat_id=DC_GROUP_CHATID, text=formatted_message)
27
await update.message.reply_text("Mensaje enviado exitosamente al grupo general.")
28
except Exception as e:
29
logger.error(f"Failed to send joder message: {e}")
0 commit comments