mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Some fix
This commit is contained in:
parent
e6aa2d475d
commit
e4ddd08bb7
2 changed files with 4 additions and 2 deletions
|
|
@ -143,7 +143,7 @@ async def shell(_, m):
|
|||
@app.on_edited_message((filters.command(["ev", "run"]) | filters.regex(r"app.run\(\)$")) & filters.user(SUDO))
|
||||
@user.on_message(filters.command(["ev", "run"], ".") & filters.me)
|
||||
async def evaluation_cmd_t(_, m):
|
||||
if len(m.command) == 1 and m.command:
|
||||
if m.command and len(m.command) == 1:
|
||||
return await edit_or_reply(m, text="__No evaluate message!__")
|
||||
cmd = m.text.split(" ", 1)[1] if m.command else m.text.split("app.run()")[0]
|
||||
status_message = await editPesan(m, "<i>Processing eval pyrogram..</i>") if m.from_user.is_self else await kirimPesan(m, "<i>Processing eval pyrogram..</i>")
|
||||
|
|
|
|||
|
|
@ -58,7 +58,9 @@ def remove_html_tags(text):
|
|||
@app.on_message(filters.command("readqr", COMMAND_HANDLER))
|
||||
@ratelimiter
|
||||
async def readqr(c, m):
|
||||
if not m.reply and (not m.reply.media and not m.reply.photo):
|
||||
if not m.reply_to_message:
|
||||
return await m.reply("Please reply photo that contain valid QR Code.")
|
||||
if not m.reply_to_message.photo:
|
||||
return await m.reply("Please reply photo that contain valid QR Code.")
|
||||
foto = await m.reply_to_message.download()
|
||||
myfile = {'file': (foto, open(foto, 'rb'),'application/octet-stream')}
|
||||
|
|
|
|||
Loading…
Reference in a new issue