diff --git a/modules/commands/message.py b/modules/commands/message.py index 31b879f..7b9f1e5 100644 --- a/modules/commands/message.py +++ b/modules/commands/message.py @@ -25,15 +25,7 @@ async def cmd_message(app, msg): await destination.message(context=msg, text=msg.text, caption=" ".join(msg.caption.split()[2:]), photo=msg.photo, video=msg.video, file=msg.document, adm_context=True) else: await destination.message(context=msg, text=None, caption=None, photo=msg.photo, video=msg.video, file=msg.document, adm_context=True) - - # try: - # new_message = await app.send_message(destination.id, message+locale("message_reply_notice", "message")) - # await msg.reply_text(locale("message_sent", "message"), quote=should_quote(msg)) - # logWrite(f"Admin {msg.from_user.id} sent message '{' '.join(msg.command[2:])}' to {destination.id}") - # col_messages.insert_one({"origin": {"chat": msg.chat.id, "id": msg.id}, "destination": {"chat": new_message.chat.id, "id": new_message.id}}) - # except bad_request_400.PeerIdInvalid: - # await msg.reply_text(locale("message_no_user", "message"), quote=should_quote(msg)) - # logWrite(f"Admin {msg.from_user.id} tried to send message '{' '.join(msg.command[2:])}' to {destination.id} but 'PeerIdInvalid'") + except IndexError: await msg.reply_text(locale("message_invalid_syntax", "message"), quote=should_quote(msg)) logWrite(f"Admin {msg.from_user.id} tried to send message but 'IndexError'")