2022-01-31 12:42:18 +00:00
# Copyright (C) 2021 By Veez Music-Project
# Commit Start Date 20/10/2021
# Finished On 28/10/2021
2022-02-09 15:37:12 +00:00
2022-02-09 02:40:43 +00:00
import os
2022-01-31 12:42:18 +00:00
import re
import asyncio
2022-02-07 05:09:06 +00:00
# repository stuff
2022-02-08 03:59:58 +00:00
from config import BOT_USERNAME , IMG_1 , IMG_2 , IMG_5
2022-01-31 12:42:18 +00:00
from program . utils . inline import stream_markup
from driver . design . thumbnail import thumb
from driver . design . chatname import CHAT_TITLE
from driver . filters import command , other_filters
from driver . queues import QUEUE , add_to_queue
2022-02-07 16:38:49 +00:00
from driver . core import calls , user , bot
2022-02-06 04:57:22 +00:00
from driver . database . dbpunish import is_gbanned_user
2022-02-07 16:38:49 +00:00
from driver . database . dblockchat import blacklisted_chats
2022-02-09 15:37:12 +00:00
from driver . database . dbqueue import add_active_chat , remove_active_chat , music_on
2022-02-07 05:09:06 +00:00
# pyrogram stuff
2022-01-31 12:42:18 +00:00
from pyrogram import Client
from pyrogram . errors import UserAlreadyParticipant , UserNotParticipant
from pyrogram . types import InlineKeyboardMarkup , Message
2022-02-07 05:09:06 +00:00
# py-tgcalls stuff
from pytgcalls import idle
2022-01-31 12:42:18 +00:00
from pytgcalls import StreamType
from pytgcalls . types . input_stream import AudioVideoPiped
from pytgcalls . types . input_stream . quality import (
HighQualityAudio ,
HighQualityVideo ,
LowQualityVideo ,
MediumQualityVideo ,
)
2022-02-07 05:09:06 +00:00
# youtube-dl stuff
2022-01-31 12:42:18 +00:00
from youtubesearchpython import VideosSearch
def ytsearch ( query : str ) :
try :
search = VideosSearch ( query , limit = 1 ) . result ( )
data = search [ " result " ] [ 0 ]
songname = data [ " title " ]
url = data [ " link " ]
duration = data [ " duration " ]
2022-02-08 01:54:18 +00:00
thumbnail = data [ " thumbnails " ] [ 0 ] [ " url " ]
2022-01-31 12:42:18 +00:00
return [ songname , url , duration , thumbnail ]
except Exception as e :
print ( e )
return 0
async def ytdl ( link ) :
proc = await asyncio . create_subprocess_exec (
" yt-dlp " ,
" -g " ,
" -f " ,
" best[height<=?720][width<=?1280] " ,
f " { link } " ,
stdout = asyncio . subprocess . PIPE ,
stderr = asyncio . subprocess . PIPE ,
)
stdout , stderr = await proc . communicate ( )
if stdout :
return 1 , stdout . decode ( ) . split ( " \n " ) [ 0 ]
else :
return 0 , stderr . decode ( )
2022-02-08 01:54:18 +00:00
def convert_seconds ( seconds ) :
seconds = seconds % ( 24 * 3600 )
seconds % = 3600
minutes = seconds / / 60
seconds % = 60
return " %02d : %02d " % ( minutes , seconds )
2022-01-31 12:42:18 +00:00
@Client.on_message ( command ( [ " vplay " , f " vplay@ { BOT_USERNAME } " ] ) & other_filters )
async def vplay ( c : Client , m : Message ) :
await m . delete ( )
replied = m . reply_to_message
chat_id = m . chat . id
user_id = m . from_user . id
2022-02-06 04:57:22 +00:00
user_xd = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
2022-02-07 17:18:10 +00:00
if chat_id in await blacklisted_chats ( ) :
2022-02-07 16:38:49 +00:00
await m . reply (
" ❗️ This chat has blacklisted by sudo user and You ' re not allowed to use me in this chat. "
)
return await bot . leave_chat ( chat_id )
2022-02-06 04:57:22 +00:00
if await is_gbanned_user ( user_id ) :
2022-02-06 06:58:16 +00:00
await message . reply_text ( f " ❗️ { user_xd } **You ' ve blocked from using this bot!** " )
2022-02-06 04:57:22 +00:00
return
2022-01-31 12:42:18 +00:00
if m . sender_chat :
return await m . reply_text (
2022-02-03 00:53:35 +00:00
" you ' re an __Anonymous__ user ! \n \n » revert back to your real user account to use this bot. "
2022-01-31 12:42:18 +00:00
)
try :
aing = await c . get_me ( )
except Exception as e :
return await m . reply_text ( f " error: \n \n { e } " )
a = await c . get_chat_member ( chat_id , aing . id )
if a . status != " administrator " :
await m . reply_text (
f " 💡 To use me, I need to be an **Administrator** with the following **permissions**: \n \n » ❌ __Delete messages__ \n » ❌ __Invite users__ \n » ❌ __Manage video chat__ \n \n Once done, type /reload "
)
return
if not a . can_manage_voice_chats :
await m . reply_text (
" 💡 To use me, Give me the following permission below: "
+ " \n \n » ❌ __Manage video chat__ \n \n Once done, try again. "
)
return
if not a . can_delete_messages :
await m . reply_text (
" 💡 To use me, Give me the following permission below: "
+ " \n \n » ❌ __Delete messages__ \n \n Once done, try again. "
)
return
if not a . can_invite_users :
await m . reply_text (
" 💡 To use me, Give me the following permission below: "
+ " \n \n » ❌ __Add users__ \n \n Once done, try again. "
)
return
try :
ubot = ( await user . get_me ( ) ) . id
b = await c . get_chat_member ( chat_id , ubot )
if b . status == " kicked " :
await c . unban_chat_member ( chat_id , ubot )
invitelink = await c . export_chat_invite_link ( chat_id )
if invitelink . startswith ( " https://t.me/+ " ) :
invitelink = invitelink . replace (
" https://t.me/+ " , " https://t.me/joinchat/ "
)
await user . join_chat ( invitelink )
2022-02-09 02:40:43 +00:00
await remove_active_chat ( chat_id )
2022-01-31 12:42:18 +00:00
except UserNotParticipant :
try :
invitelink = await c . export_chat_invite_link ( chat_id )
if invitelink . startswith ( " https://t.me/+ " ) :
invitelink = invitelink . replace (
" https://t.me/+ " , " https://t.me/joinchat/ "
)
await user . join_chat ( invitelink )
2022-02-09 02:40:43 +00:00
await remove_active_chat ( chat_id )
2022-01-31 12:42:18 +00:00
except UserAlreadyParticipant :
pass
except Exception as e :
return await m . reply_text (
f " ❌ **userbot failed to join** \n \n **reason**: ` { e } ` "
)
if replied :
if replied . video or replied . document :
2022-02-11 15:30:23 +00:00
loser = await replied . reply ( " 📥 downloading video... " )
2022-01-31 12:42:18 +00:00
dl = await replied . download ( )
link = replied . link
if len ( m . command ) < 2 :
Q = 720
else :
pq = m . text . split ( None , 1 ) [ 1 ]
if pq == " 720 " or " 480 " or " 360 " :
Q = int ( pq )
else :
Q = 720
await loser . edit (
2022-02-08 00:57:37 +00:00
" » only 720, 480, 360 allowed \n \n 💡 now streaming video in **720p** "
2022-01-31 12:42:18 +00:00
)
try :
if replied . video :
songname = replied . video . file_name [ : 70 ]
2022-02-08 01:54:18 +00:00
duration = convert_seconds ( replied . video . duration )
2022-01-31 12:42:18 +00:00
elif replied . document :
songname = replied . document . file_name [ : 70 ]
2022-02-08 01:54:18 +00:00
duration = convert_seconds ( replied . document . duration )
2022-01-31 12:42:18 +00:00
except BaseException :
songname = " Video "
if chat_id in QUEUE :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Queueing Track... " )
2022-02-03 00:53:35 +00:00
gcname = m . chat . title
ctitle = await CHAT_TITLE ( gcname )
title = songname
userid = m . from_user . id
thumbnail = f " { IMG_5 } "
image = await thumb ( thumbnail , title , userid , ctitle )
2022-01-31 12:42:18 +00:00
pos = add_to_queue ( chat_id , songname , dl , link , " Video " , Q )
await loser . delete ( )
requester = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
buttons = stream_markup ( user_id )
await m . reply_photo (
2022-02-03 00:53:35 +00:00
photo = image ,
2022-01-31 12:42:18 +00:00
reply_markup = InlineKeyboardMarkup ( buttons ) ,
caption = f " 💡 **Track added to queue »** ` { pos } ` \n \n 🗂 **Name:** [ { songname } ]( { link } ) | `video` \n ⏱️ **Duration:** ` { duration } ` \n 🧸 **Request by:** { requester } " ,
)
2022-02-09 02:40:43 +00:00
os . remove ( image )
2022-01-31 12:42:18 +00:00
else :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Joining Group Call... " )
2022-02-03 00:53:35 +00:00
gcname = m . chat . title
ctitle = await CHAT_TITLE ( gcname )
title = songname
userid = m . from_user . id
thumbnail = f " { IMG_5 } "
image = await thumb ( thumbnail , title , userid , ctitle )
2022-01-31 12:42:18 +00:00
if Q == 720 :
amaze = HighQualityVideo ( )
elif Q == 480 :
amaze = MediumQualityVideo ( )
elif Q == 360 :
amaze = LowQualityVideo ( )
2022-02-09 02:40:43 +00:00
await music_on ( chat_id )
await add_active_chat ( chat_id )
2022-02-07 16:27:50 +00:00
await calls . join_group_call (
2022-01-31 12:42:18 +00:00
chat_id ,
AudioVideoPiped (
dl ,
HighQualityAudio ( ) ,
amaze ,
) ,
2022-02-08 00:57:37 +00:00
stream_type = StreamType ( ) . pulse_stream ,
2022-01-31 12:42:18 +00:00
)
add_to_queue ( chat_id , songname , dl , link , " Video " , Q )
await loser . delete ( )
requester = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
buttons = stream_markup ( user_id )
await m . reply_photo (
2022-02-03 00:53:35 +00:00
photo = image ,
2022-01-31 12:42:18 +00:00
reply_markup = InlineKeyboardMarkup ( buttons ) ,
caption = f " 🗂 **Name:** [ { songname } ]( { link } ) | `video` \n ⏱️ **Duration:** ` { duration } ` \n 🧸 **Request by:** { requester } " ,
)
2022-02-07 05:09:06 +00:00
await idle ( )
2022-02-09 02:40:43 +00:00
os . remove ( image )
2022-01-31 12:42:18 +00:00
else :
if len ( m . command ) < 2 :
await m . reply (
" » reply to an **video file** or **give something to search.** "
)
else :
2022-02-11 15:30:23 +00:00
loser = await c . send_message ( chat_id , " 🔍 **Loading...** " )
2022-01-31 12:42:18 +00:00
query = m . text . split ( None , 1 ) [ 1 ]
search = ytsearch ( query )
Q = 720
amaze = HighQualityVideo ( )
if search == 0 :
await loser . edit ( " ❌ **no results found.** " )
else :
songname = search [ 0 ]
title = search [ 0 ]
url = search [ 1 ]
duration = search [ 2 ]
thumbnail = search [ 3 ]
userid = m . from_user . id
gcname = m . chat . title
ctitle = await CHAT_TITLE ( gcname )
image = await thumb ( thumbnail , title , userid , ctitle )
veez , ytlink = await ytdl ( url )
if veez == 0 :
await loser . edit ( f " ❌ yt-dl issues detected \n \n » ` { ytlink } ` " )
else :
if chat_id in QUEUE :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Queueing Track... " )
2022-01-31 12:42:18 +00:00
pos = add_to_queue (
chat_id , songname , ytlink , url , " Video " , Q
)
await loser . delete ( )
requester = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
buttons = stream_markup ( user_id )
await m . reply_photo (
photo = image ,
reply_markup = InlineKeyboardMarkup ( buttons ) ,
caption = f " 💡 **Track added to queue »** ` { pos } ` \n \n 🗂 **Name:** [ { songname } ]( { url } ) | `video` \n ⏱ **Duration:** ` { duration } ` \n 🧸 **Request by:** { requester } " ,
)
2022-02-09 02:40:43 +00:00
os . remove ( image )
2022-01-31 12:42:18 +00:00
else :
try :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Joining Group Call... " )
2022-02-09 02:40:43 +00:00
await music_on ( chat_id )
await add_active_chat ( chat_id )
2022-02-07 16:27:50 +00:00
await calls . join_group_call (
2022-01-31 12:42:18 +00:00
chat_id ,
AudioVideoPiped (
ytlink ,
HighQualityAudio ( ) ,
amaze ,
) ,
stream_type = StreamType ( ) . local_stream ,
)
add_to_queue ( chat_id , songname , ytlink , url , " Video " , Q )
await loser . delete ( )
requester = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
buttons = stream_markup ( user_id )
await m . reply_photo (
photo = image ,
reply_markup = InlineKeyboardMarkup ( buttons ) ,
caption = f " 🗂 **Name:** [ { songname } ]( { url } ) | `video` \n ⏱ **Duration:** ` { duration } ` \n 🧸 **Request by:** { requester } " ,
)
2022-02-07 05:09:06 +00:00
await idle ( )
2022-02-09 02:40:43 +00:00
os . remove ( image )
2022-01-31 12:42:18 +00:00
except Exception as ep :
await loser . delete ( )
2022-02-09 02:40:43 +00:00
await remove_active_chat ( chat_id )
2022-01-31 12:42:18 +00:00
await m . reply_text ( f " 🚫 error: ` { ep } ` " )
else :
if len ( m . command ) < 2 :
await m . reply (
" » reply to an **video file** or **give something to search.** "
)
else :
2022-02-11 15:30:23 +00:00
loser = await c . send_message ( chat_id , " 🔍 **Loading...** " )
2022-01-31 12:42:18 +00:00
query = m . text . split ( None , 1 ) [ 1 ]
search = ytsearch ( query )
Q = 720
amaze = HighQualityVideo ( )
if search == 0 :
await loser . edit ( " ❌ **no results found.** " )
else :
songname = search [ 0 ]
title = search [ 0 ]
url = search [ 1 ]
duration = search [ 2 ]
thumbnail = search [ 3 ]
userid = m . from_user . id
gcname = m . chat . title
ctitle = await CHAT_TITLE ( gcname )
image = await thumb ( thumbnail , title , userid , ctitle )
veez , ytlink = await ytdl ( url )
if veez == 0 :
await loser . edit ( f " ❌ yt-dl issues detected \n \n » ` { ytlink } ` " )
else :
if chat_id in QUEUE :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Queueing Track... " )
2022-01-31 12:42:18 +00:00
pos = add_to_queue ( chat_id , songname , ytlink , url , " Video " , Q )
await loser . delete ( )
requester = (
f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
)
buttons = stream_markup ( user_id )
await m . reply_photo (
photo = image ,
reply_markup = InlineKeyboardMarkup ( buttons ) ,
caption = f " 💡 **Track added to queue »** ` { pos } ` \n \n 🗂 **Name:** [ { songname } ]( { url } ) | `video` \n ⏱ **Duration:** ` { duration } ` \n 🧸 **Request by:** { requester } " ,
)
2022-02-09 02:40:43 +00:00
os . remove ( image )
2022-01-31 12:42:18 +00:00
else :
try :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Joining Group Call... " )
2022-02-09 02:40:43 +00:00
await music_on ( chat_id )
await add_active_chat ( chat_id )
2022-02-07 16:27:50 +00:00
await calls . join_group_call (
2022-01-31 12:42:18 +00:00
chat_id ,
AudioVideoPiped (
ytlink ,
HighQualityAudio ( ) ,
amaze ,
) ,
stream_type = StreamType ( ) . local_stream ,
)
add_to_queue ( chat_id , songname , ytlink , url , " Video " , Q )
await loser . delete ( )
requester = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
buttons = stream_markup ( user_id )
await m . reply_photo (
photo = image ,
reply_markup = InlineKeyboardMarkup ( buttons ) ,
2022-02-01 04:37:50 +00:00
caption = f " 🗂 **Name:** [ { songname } ]( { url } ) | `video` \n ⏱ **Duration:** ` { duration } ` \n 🧸 **Request by:** { requester } " ,
2022-01-31 12:42:18 +00:00
)
2022-02-07 05:09:06 +00:00
await idle ( )
2022-02-09 02:40:43 +00:00
os . remove ( image )
2022-01-31 12:42:18 +00:00
except Exception as ep :
await loser . delete ( )
2022-02-09 02:40:43 +00:00
await remove_active_chat ( chat_id )
2022-01-31 12:42:18 +00:00
await m . reply_text ( f " 🚫 error: ` { ep } ` " )
@Client.on_message ( command ( [ " vstream " , f " vstream@ { BOT_USERNAME } " ] ) & other_filters )
async def vstream ( c : Client , m : Message ) :
await m . delete ( )
chat_id = m . chat . id
user_id = m . from_user . id
2022-02-06 04:57:22 +00:00
user_xd = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
2022-02-07 17:18:10 +00:00
if chat_id in await blacklisted_chats ( ) :
2022-02-07 16:38:49 +00:00
await m . reply (
" ❗️ This chat has blacklisted by sudo user and You ' re not allowed to use me in this chat. "
)
return await bot . leave_chat ( chat_id )
2022-02-06 04:57:22 +00:00
if await is_gbanned_user ( user_id ) :
2022-02-06 06:58:16 +00:00
await message . reply_text ( f " ❗️ { user_xd } **You ' ve blocked from using this bot!** " )
2022-02-06 04:57:22 +00:00
return
2022-01-31 12:42:18 +00:00
if m . sender_chat :
return await m . reply_text (
2022-02-03 00:53:35 +00:00
" you ' re an __Anonymous__ user ! \n \n » revert back to your real user account to use this bot. "
2022-01-31 12:42:18 +00:00
)
try :
aing = await c . get_me ( )
except Exception as e :
return await m . reply_text ( f " error: \n \n { e } " )
a = await c . get_chat_member ( chat_id , aing . id )
if a . status != " administrator " :
await m . reply_text (
f " 💡 To use me, I need to be an **Administrator** with the following **permissions**: \n \n » ❌ __Delete messages__ \n » ❌ __Invite users__ \n » ❌ __Manage video chat__ \n \n Once done, type /reload "
)
return
if not a . can_manage_voice_chats :
await m . reply_text (
" 💡 To use me, Give me the following permission below: "
+ " \n \n » ❌ __Manage video chat__ \n \n Once done, try again. "
)
return
if not a . can_delete_messages :
await m . reply_text (
" 💡 To use me, Give me the following permission below: "
+ " \n \n » ❌ __Delete messages__ \n \n Once done, try again. "
)
return
if not a . can_invite_users :
await m . reply_text (
" 💡 To use me, Give me the following permission below: "
+ " \n \n » ❌ __Add users__ \n \n Once done, try again. "
)
return
try :
ubot = ( await user . get_me ( ) ) . id
b = await c . get_chat_member ( chat_id , ubot )
if b . status == " kicked " :
await c . unban_chat_member ( chat_id , ubot )
invitelink = await c . export_chat_invite_link ( chat_id )
if invitelink . startswith ( " https://t.me/+ " ) :
invitelink = invitelink . replace (
" https://t.me/+ " , " https://t.me/joinchat/ "
)
await user . join_chat ( invitelink )
2022-02-09 02:40:43 +00:00
await remove_active_chat ( chat_id )
2022-01-31 12:42:18 +00:00
except UserNotParticipant :
try :
invitelink = await c . export_chat_invite_link ( chat_id )
if invitelink . startswith ( " https://t.me/+ " ) :
invitelink = invitelink . replace (
" https://t.me/+ " , " https://t.me/joinchat/ "
)
await user . join_chat ( invitelink )
2022-02-09 02:40:43 +00:00
await remove_active_chat ( chat_id )
2022-01-31 12:42:18 +00:00
except UserAlreadyParticipant :
pass
except Exception as e :
return await m . reply_text (
f " ❌ **userbot failed to join** \n \n **reason**: ` { e } ` "
)
if len ( m . command ) < 2 :
await m . reply ( " » give me a live-link/m3u8 url/youtube link to stream. " )
else :
if len ( m . command ) == 2 :
link = m . text . split ( None , 1 ) [ 1 ]
Q = 720
2022-02-11 15:30:23 +00:00
loser = await c . send_message ( chat_id , " 🔍 **Loading...** " )
2022-01-31 12:42:18 +00:00
elif len ( m . command ) == 3 :
op = m . text . split ( None , 1 ) [ 1 ]
link = op . split ( None , 1 ) [ 0 ]
quality = op . split ( None , 1 ) [ 1 ]
if quality == " 720 " or " 480 " or " 360 " :
Q = int ( quality )
else :
Q = 720
await m . reply (
2022-02-08 00:57:37 +00:00
" » only 720, 480, 360 allowed \n \n 💡 now streaming video in **720p** "
2022-01-31 12:42:18 +00:00
)
2022-02-11 15:30:23 +00:00
loser = await c . send_message ( chat_id , " 🔍 **Loading...** " )
2022-01-31 12:42:18 +00:00
else :
2022-02-08 00:57:37 +00:00
await m . reply ( " `/vstream` {link} { 720/480/360} " )
2022-01-31 12:42:18 +00:00
regex = r " ^(https? \ : \ / \ /)?(www \ .youtube \ .com|youtu \ .?be) \ /.+ "
match = re . match ( regex , link )
if match :
veez , livelink = await ytdl ( link )
else :
livelink = link
veez = 1
if veez == 0 :
await loser . edit ( f " ❌ yt-dl issues detected \n \n » ` { livelink } ` " )
else :
if chat_id in QUEUE :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Queueing Track... " )
2022-01-31 12:42:18 +00:00
pos = add_to_queue ( chat_id , " Live Stream " , livelink , link , " Video " , Q )
await loser . delete ( )
requester = f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
buttons = stream_markup ( user_id )
await m . reply_photo (
photo = f " { IMG_1 } " ,
reply_markup = InlineKeyboardMarkup ( buttons ) ,
caption = f " 💡 **Track added to queue »** ` { pos } ` \n \n 💭 **Chat:** ` { chat_id } ` \n 🧸 **Request by:** { requester } " ,
)
else :
if Q == 720 :
amaze = HighQualityVideo ( )
elif Q == 480 :
amaze = MediumQualityVideo ( )
elif Q == 360 :
amaze = LowQualityVideo ( )
try :
2022-02-11 15:30:23 +00:00
await loser . edit ( " 🔄 Joining Group Call... " )
2022-02-09 02:40:43 +00:00
await music_on ( chat_id )
await add_active_chat ( chat_id )
2022-02-07 16:27:50 +00:00
await calls . join_group_call (
2022-01-31 12:42:18 +00:00
chat_id ,
AudioVideoPiped (
livelink ,
HighQualityAudio ( ) ,
amaze ,
) ,
stream_type = StreamType ( ) . live_stream ,
)
add_to_queue ( chat_id , " Live Stream " , livelink , link , " Video " , Q )
await loser . delete ( )
requester = (
f " [ { m . from_user . first_name } ](tg://user?id= { m . from_user . id } ) "
)
buttons = stream_markup ( user_id )
await m . reply_photo (
photo = f " { IMG_2 } " ,
reply_markup = InlineKeyboardMarkup ( buttons ) ,
caption = f " 💡 **[Video Live]( { link } ) stream started.** \n \n 💭 **Chat:** ` { chat_id } ` \n 🧸 **Request by:** { requester } " ,
)
except Exception as ep :
await loser . delete ( )
2022-02-09 02:40:43 +00:00
await remove_active_chat ( chat_id )
2022-01-31 12:42:18 +00:00
await m . reply_text ( f " 🚫 error: ` { ep } ` " )