Skip to content

Commit

Permalink
Improve edit_message message type hint
Browse files Browse the repository at this point in the history
This also allows utils.get_message_id to get the ID of InputMessageID.
  • Loading branch information
Nick80835 committed Jan 18, 2025
1 parent 792adb7 commit 94471c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions telethon/client/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ def get_key(m):
async def edit_message(
self: 'TelegramClient',
entity: 'typing.Union[hints.EntityLike, types.Message]',
message: 'hints.MessageLike' = None,
message: 'typing.Union[int, types.Message, types.InputMessageID, str]' = None,
text: str = None,
*,
parse_mode: str = (),
Expand Down Expand Up @@ -1096,7 +1096,7 @@ async def edit_message(
which is the only way to edit messages that were sent
after the user selects an inline query result.
message (`int` | `Message <telethon.tl.custom.message.Message>` | `str`):
message (`int` | `Message <telethon.tl.custom.message.Message>` | :tl:`InputMessageID` | `str`):
The ID of the message (or `Message
<telethon.tl.custom.message.Message>` itself) to be edited.
If the `entity` was a `Message
Expand Down
3 changes: 3 additions & 0 deletions telethon/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,9 @@ def get_message_id(message):
if isinstance(message, int):
return message

if isinstance(message, types.InputMessageID):
return message.id

try:
if message.SUBCLASS_OF_ID == 0x790009e3:
# hex(crc32(b'Message')) = 0x790009e3
Expand Down

0 comments on commit 94471c1

Please sign in to comment.