some fixes
This commit is contained in:
parent
a5c7085bba
commit
920aa7209b
@ -79,7 +79,7 @@ async def vplay(_, m: Message):
|
||||
except Exception as e:
|
||||
return await m.reply_text(f"error:\n\n{e}")
|
||||
chat_title = m.chat.title
|
||||
a = await _.get_chat_member(m.chat.id, pepe)
|
||||
a = await bot.get_chat_member(m.chat.id, pepe)
|
||||
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» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
|
||||
return
|
||||
@ -107,7 +107,7 @@ async def vplay(_, m: Message):
|
||||
uber = await user.get_me()
|
||||
grab = uber
|
||||
good = grab.id
|
||||
b = await _.get_chat_member(m.chat.id, good)
|
||||
b = await bot.get_chat_member(m.chat.id, good)
|
||||
if b.status == "kicked":
|
||||
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
|
||||
return
|
||||
@ -120,8 +120,8 @@ async def vplay(_, m: Message):
|
||||
return
|
||||
else:
|
||||
try:
|
||||
pope = await _.export_chat_invite_link(m.chat.id)
|
||||
pepo = await _.revoke_chat_invite_link(m.chat.id, pope)
|
||||
pope = await bot.export_chat_invite_link(m.chat.id)
|
||||
pepo = await bot.revoke_chat_invite_link(m.chat.id, pope)
|
||||
await user.join_chat(pepo.invite_link)
|
||||
except UserAlreadyParticipant:
|
||||
pass
|
||||
@ -314,7 +314,7 @@ async def vstream(_, m: Message):
|
||||
except Exception as e:
|
||||
return await m.reply_text(f"error:\n\n{e}")
|
||||
chat_title = m.chat.title
|
||||
a = await _.get_chat_member(m.chat.id, pepe)
|
||||
a = await bot.get_chat_member(m.chat.id, pepe)
|
||||
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» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
|
||||
return
|
||||
@ -342,7 +342,7 @@ async def vstream(_, m: Message):
|
||||
uber = await user.get_me()
|
||||
grab = uber
|
||||
good = grab.id
|
||||
b = await _.get_chat_member(m.chat.id, good)
|
||||
b = await bot.get_chat_member(m.chat.id, good)
|
||||
if b.status == "kicked":
|
||||
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
|
||||
return
|
||||
@ -355,8 +355,8 @@ async def vstream(_, m: Message):
|
||||
return
|
||||
else:
|
||||
try:
|
||||
pope = await _.export_chat_invite_link(m.chat.id)
|
||||
pepo = await _.revoke_chat_invite_link(m.chat.id, pope)
|
||||
pope = await bot.export_chat_invite_link(m.chat.id)
|
||||
pepo = await bot.revoke_chat_invite_link(m.chat.id, pope)
|
||||
await user.join_chat(pepo.invite_link)
|
||||
except UserAlreadyParticipant:
|
||||
pass
|
||||
|
Loading…
Reference in New Issue
Block a user