mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-01 05:04:51 +00:00
Always cast inline query ids to string
This commit is contained in:
parent
b1c63c18d6
commit
82e0087def
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ class InlineQueryResult(Object):
|
|||
super().__init__()
|
||||
|
||||
self.type = type
|
||||
self.id = str(uuid4()) if id is None else id
|
||||
self.id = str(uuid4()) if id is None else str(id)
|
||||
self.input_message_content = input_message_content
|
||||
self.reply_markup = reply_markup
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue