[check] some exceptions
This commit is contained in:
parent
d8739b8e35
commit
8ff19365a7
@ -194,6 +194,8 @@ async def play_tg_file(c: Client, m: Message, replied: Message = None, link: str
|
|||||||
await remove_active_chat(chat_id)
|
await remove_active_chat(chat_id)
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
await m.reply_text("❌ The bot can't find the Group call or it's inactive.\n\n» Use /startvc command to turn on the Group call !")
|
await m.reply_text("❌ The bot can't find the Group call or it's inactive.\n\n» Use /startvc command to turn on the Group call !")
|
||||||
|
except BaseException as err:
|
||||||
|
print(err)
|
||||||
else:
|
else:
|
||||||
await m.reply(
|
await m.reply(
|
||||||
"» reply to an **video file** or **give something to search.**"
|
"» reply to an **video file** or **give something to search.**"
|
||||||
@ -327,6 +329,8 @@ async def vplay(c: Client, m: Message):
|
|||||||
await suhu.delete()
|
await suhu.delete()
|
||||||
await remove_active_chat(chat_id)
|
await remove_active_chat(chat_id)
|
||||||
await m.reply_text("❌ The content you provide to play has no audio source")
|
await m.reply_text("❌ The content you provide to play has no audio source")
|
||||||
|
except BaseException as err:
|
||||||
|
print(err)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if len(m.command) < 2:
|
if len(m.command) < 2:
|
||||||
@ -410,6 +414,8 @@ async def vplay(c: Client, m: Message):
|
|||||||
await suhu.delete()
|
await suhu.delete()
|
||||||
await remove_active_chat(chat_id)
|
await remove_active_chat(chat_id)
|
||||||
await m.reply_text("❌ The content you provide to play has no audio source")
|
await m.reply_text("❌ The content you provide to play has no audio source")
|
||||||
|
except BaseException as err:
|
||||||
|
print(err)
|
||||||
|
|
||||||
|
|
||||||
@Client.on_message(command(["vstream", f"vstream@{BOT_USERNAME}"]) & other_filters)
|
@Client.on_message(command(["vstream", f"vstream@{BOT_USERNAME}"]) & other_filters)
|
||||||
@ -543,6 +549,4 @@ async def vstream(c: Client, m: Message):
|
|||||||
await remove_active_chat(chat_id)
|
await remove_active_chat(chat_id)
|
||||||
await m.reply_text("❌ The bot can't find the Group call or it's inactive.\n\n» Use /startvc command to turn on the Group call !")
|
await m.reply_text("❌ The bot can't find the Group call or it's inactive.\n\n» Use /startvc command to turn on the Group call !")
|
||||||
except BaseException as err:
|
except BaseException as err:
|
||||||
await loser.delete()
|
print(err)
|
||||||
await remove_active_chat(chat_id)
|
|
||||||
await m.reply_text(f"🚫 error: `{err}`")
|
|
||||||
|
Loading…
Reference in New Issue
Block a user