diff --git a/resources/lib/youtube_plugin/youtube/helper/utils.py b/resources/lib/youtube_plugin/youtube/helper/utils.py index 447e71411..d2f06749c 100644 --- a/resources/lib/youtube_plugin/youtube/helper/utils.py +++ b/resources/lib/youtube_plugin/youtube/helper/utils.py @@ -834,5 +834,5 @@ def filter_short_videos(items): return [ item for item in items - if item.playable and not 0 <= item.get_duration() <= 60 + if not item.playable or not 0 <= item.get_duration() <= 60 ]