Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

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


MIN_CHANNEL_ID = -1002147483647
MIN_CHANNEL_ID_OLD = -1002147483647
MIN_CHANNEL_ID = -1009999999999
MAX_CHANNEL_ID = -1000000000000
MIN_CHAT_ID_OLD = -2147483647
MIN_CHAT_ID = -999999999999
Expand Down