[check] some fixes

This commit is contained in:
levina 2022-02-28 05:24:39 +07:00 committed by GitHub
parent 7d26fcfcf0
commit 74571bf37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,11 +197,13 @@ async def new_chat(c: Client, m: Message):
else: else:
await add_served_chat(chat_id) await add_served_chat(chat_id)
for member in m.new_chat_members: for member in m.new_chat_members:
if chat_id in await blacklisted_chats(): if member.id == me_bot.id:
await m.reply( try:
"❗️ This chat has blacklisted by sudo user and You're not allowed to use me in this chat." if chat_id in await blacklisted_chats():
) await m.reply_text(
return await bot.leave_chat(chat_id) "❗️ 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)
if member.id == me_bot.id: if member.id == me_bot.id:
return await m.reply( return await m.reply(
"❤️ Thanks for adding me to the **Group** !\n\n" "❤️ Thanks for adding me to the **Group** !\n\n"