diff --git a/aiogram/types/message.py b/aiogram/types/message.py index de70af6b..37ff8b64 100644 --- a/aiogram/types/message.py +++ b/aiogram/types/message.py @@ -107,8 +107,8 @@ class Message(Deserializable): venue = Venue.deserialize(raw_data.get('venue')) left_chat_member = User.deserialize(raw_data.get('left_chat_member')) new_chat_title = raw_data.get('new_chat_title') - new_chat_photo = raw_data.get('new_chat_photo') - delete_chat_photo = PhotoSize.deserialize(raw_data.get('delete_chat_photo')) + new_chat_photo = PhotoSize.deserialize(raw_data.get('new_chat_photo')) + delete_chat_photo = raw_data.get('delete_chat_photo') group_chat_created = raw_data.get('group_chat_created') supergroup_chat_created = raw_data.get('supergroup_chat_created') channel_chat_created = raw_data.get('channel_chat_created')