Merge pull request #1801 from coder2020official/master

Fixed bot api bug
This commit is contained in:
_run 2022-11-18 23:22:39 +04:00 committed by GitHub
commit 8a74198276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -956,6 +956,10 @@ class Message(JsonDeserializable):
opts['forward_date'] = obj.get('forward_date')
if 'is_automatic_forward' in obj:
opts['is_automatic_forward'] = obj.get('is_automatic_forward')
if 'is_topic_message' in obj:
opts['is_topic_message'] = obj.get('is_topic_message')
if 'message_thread_id' in obj:
opts['message_thread_id'] = obj.get('message_thread_id')
if 'reply_to_message' in obj:
opts['reply_to_message'] = Message.de_json(obj['reply_to_message'])
if 'via_bot' in obj: