diff --git a/pyrogram/types/messages_and_media/message.py b/pyrogram/types/messages_and_media/message.py index e80ea25db..d6f762f35 100644 --- a/pyrogram/types/messages_and_media/message.py +++ b/pyrogram/types/messages_and_media/message.py @@ -1186,7 +1186,7 @@ async def _parse( video_attributes = attributes[raw.types.DocumentAttributeVideo] if video_attributes.round_message: - video_note = types.VideoNote._parse(client, media, video_attributes, media.ttl_seconds) + video_note = types.VideoNote._parse(client, doc, video_attributes, media.ttl_seconds) media_type = enums.MessageMediaType.VIDEO_NOTE else: video = types.Video._parse(client, media, video_attributes, file_name, media.ttl_seconds)