diff --git a/pyrogram/client/filters/filters.py b/pyrogram/client/filters/filters.py index 9aecb79a..4c6f0ce3 100644 --- a/pyrogram/client/filters/filters.py +++ b/pyrogram/client/filters/filters.py @@ -115,7 +115,7 @@ class Filters: voice = create("Voice", lambda _, m: bool(m.voice)) """Filter messages that contain :obj:`Voice ` note objects.""" - video_note = create("Voice", lambda _, m: bool(m.video_note)) + video_note = create("VideoNote", lambda _, m: bool(m.video_note)) """Filter messages that contain :obj:`VideoNote ` objects.""" contact = create("Contact", lambda _, m: bool(m.contact))