Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions pyrogram/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,12 @@ def unpack_inline_message_id(inline_message_id: str) -> "raw.base.InputBotInline
)


MIN_CHANNEL_ID = -1002147483647
# MIN_CHANNEL_ID_OLD = -1002147483647
# MIN_CHAT_ID_OLD = -2147483647
# MAX_USER_ID_OLD = 2147483647
MIN_CHANNEL_ID = -1007852516352
MAX_CHANNEL_ID = -1000000000000
MIN_CHAT_ID = -2147483647
MAX_USER_ID_OLD = 2147483647
MIN_CHAT_ID = -999999999999
MAX_USER_ID = 999999999999


Expand Down