diff --git a/sickbeard/providers/newzbin.py b/sickbeard/providers/newzbin.py index c0b2360a666e7450b4919a04f0c7340a3d9f966c..1157a328b5e26c32b4521b13399bf34b939b5356 100644 --- a/sickbeard/providers/newzbin.py +++ b/sickbeard/providers/newzbin.py @@ -158,14 +158,17 @@ class NewzbinProvider(generic.NZBProvider): def _is_WEBDL(self, attrs): - # Video Fmt: H.264, 720p - video_fmt = 'Video Fmt' in attrs and ('H.264' in attrs['Video Fmt']) \ + # Video Fmt: x264, H.264, 720p + video_fmt = 'Video Fmt' in attrs and ('x264' in attrs['Video Fmt'] or 'H.264' in attrs['Video Fmt']) \ and ('720p' in attrs['Video Fmt']) + # Source: Web-DL + source = 'Source' in attrs and 'Web-dl' in attrs['Source'] + # Subtitles: (None) subs = 'Subtitles' not in attrs - return video_fmt and subs + return video_fmt and source and subs def _is_720pBluRay(self, attrs):