mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-31 20:54:51 +00:00
Clarify get_messages error messages
This commit is contained in:
parent
776557f60b
commit
b2886c21ca
1 changed files with 2 additions and 1 deletions
|
|
@ -66,6 +66,7 @@ class GetMessages(BaseClient):
|
|||
|
||||
Raises:
|
||||
RPCError: In case of a Telegram RPC error.
|
||||
ValueError: In case of invalid arguments.
|
||||
"""
|
||||
ids, ids_type = (
|
||||
(message_ids, types.InputMessageID) if message_ids
|
||||
|
|
@ -74,7 +75,7 @@ class GetMessages(BaseClient):
|
|||
)
|
||||
|
||||
if ids is None:
|
||||
raise ValueError("No argument supplied")
|
||||
raise ValueError("No argument supplied. Either pass message_ids or reply_to_message_ids")
|
||||
|
||||
peer = self.resolve_peer(chat_id)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue