status info

This commit is contained in:
levina 2021-09-14 10:08:25 +07:00 committed by GitHub
parent 517e1424dc
commit c0fb81ddbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,10 +209,11 @@ async def stopvideo(client, m: Message):
await m.reply(f"🚫 **error** | `{e}`")
@call_py.on_stream_end()
async def handler(client: PyTgCalls, update: Update):
async def handler(client: PyTgCalls, update: Update, m: Message):
LOG.info(f"called ended stream")
chat_id = update.chat_id
await call_py.leave_group_call(chat_id)
await call_py.leave_group_call(chat_id)
await m.reply("✅ **successfully left vc !**")
@Client.on_message(command(["cplay", f"cplay@{Veez.BOT_USERNAME}"]) & filters.group & ~filters.edited)