Always cast inline query ids to string
This commit is contained in:
parent
b1c63c18d6
commit
82e0087def
@ -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 New Issue
Block a user