mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-22 06:17:54 +00:00
🐛 Fix Invite Bot Cannot Exit
This commit is contained in:
parent
50a9decb0a
commit
598587a74d
@ -1,4 +1,7 @@
|
||||
import contextlib
|
||||
|
||||
from telegram import Update, Chat, User
|
||||
from telegram.error import BadRequest
|
||||
from telegram.ext import CallbackContext, ChatMemberHandler
|
||||
|
||||
from core.admin.services import BotAdminService
|
||||
@ -85,6 +88,7 @@ class ChatMember(Plugin):
|
||||
else:
|
||||
quit_status = True
|
||||
if quit_status:
|
||||
with contextlib.suppress(BadRequest):
|
||||
await context.bot.send_message(chat.id, "派蒙不想进去!不是旅行者的邀请!")
|
||||
await context.bot.leave_chat(chat.id)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user