🔖 Update to v1.2.21

This commit is contained in:
xtaodada 2023-01-02 12:16:31 +08:00
parent 4566c21c0a
commit 0a4dda08ab
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659
3 changed files with 7 additions and 6 deletions

View File

@ -15,7 +15,7 @@ from pyrogram import Client
from pyromod.listen.temp_fix import temp_fix
pgm_version = "1.2.20"
pgm_version = "1.2.21"
CMD_LIST = {}
module_dir = __path__[0]
working_dir = getcwd()

View File

@ -11,7 +11,7 @@ from pyrogram.errors.exceptions.bad_request_400 import (
MessageIdInvalid,
MessageNotModified,
MessageEmpty,
UserNotParticipant
UserNotParticipant, PeerIdInvalid
)
from pyrogram.handlers import MessageHandler, EditedMessageHandler
@ -20,7 +20,6 @@ from pagermaid.group_manager import Permission
from pagermaid.inject import inject
from pagermaid.single_utils import Message, AlreadyInConversationError, TimeoutConversationError, ListenerCanceled
from pagermaid.utils import lang, attach_report, sudo_filter, alias_command, get_permission_name, process_exit
from pagermaid.utils import client as httpx_client
from pagermaid.hook import Hook
secret_generator = secrets.SystemRandom()
@ -153,8 +152,10 @@ def listener(**args):
raise StopPropagation from e
except KeyboardInterrupt as e:
raise KeyboardInterrupt from e
except (UserNotParticipant, MessageNotModified, MessageEmpty, Flood, Forbidden):
pass
except (UserNotParticipant, MessageNotModified, MessageEmpty, Flood, Forbidden, PeerIdInvalid):
logs.warning(
"An unknown chat error occurred while processing a command.",
)
except MessageIdInvalid:
logs.warning(
"Please Don't Delete Commands While it's Processing.."

View File

@ -1,4 +1,4 @@
pyrogram==2.0.73
pyrogram==2.0.93
TgCrypto==1.2.5
Pillow>=8.4.0
pytz>=2021.3