This commit is contained in:
levina 2021-11-02 22:37:44 +07:00 committed by GitHub
parent d1d596018f
commit cfef93ec3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ async def play(_, m: Message):
await m.reply_text(f"error:\n\n{e}") await m.reply_text(f"error:\n\n{e}")
return return
chat_title = m.chat.title 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": 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**") 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 return
@ -102,7 +102,7 @@ async def play(_, m: Message):
uber = await user.get_me() uber = await user.get_me()
grab = uber grab = uber
good = grab.id 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": 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.**") 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 return
@ -115,8 +115,8 @@ async def play(_, m: Message):
return return
else: else:
try: try:
pope = await _.export_chat_invite_link(m.chat.id) pope = await bot.export_chat_invite_link(m.chat.id)
pepo = await _.revoke_chat_invite_link(m.chat.id, pope) pepo = await bot.revoke_chat_invite_link(m.chat.id, pope)
await user.join_chat(pepo.invite_link) await user.join_chat(pepo.invite_link)
except UserAlreadyParticipant: except UserAlreadyParticipant:
pass pass
@ -281,7 +281,7 @@ async def stream(_, m: Message):
await m.reply_text(f"error:\n\n{e}") await m.reply_text(f"error:\n\n{e}")
return return
chat_title = m.chat.title 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": 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**") 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 return
@ -309,7 +309,7 @@ async def stream(_, m: Message):
uber = await user.get_me() uber = await user.get_me()
grab = uber grab = uber
good = grab.id 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": 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.**") 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 return
@ -322,8 +322,8 @@ async def stream(_, m: Message):
return return
else: else:
try: try:
pope = await _.export_chat_invite_link(m.chat.id) pope = await bot.export_chat_invite_link(m.chat.id)
pepo = await _.revoke_chat_invite_link(m.chat.id, pope) pepo = await bot.revoke_chat_invite_link(m.chat.id, pope)
await user.join_chat(pepo.invite_link) await user.join_chat(pepo.invite_link)
except UserAlreadyParticipant: except UserAlreadyParticipant:
pass pass