Private GIT

Skip to content
Snippets Groups Projects
Commit aa1a41fb authored by azcom's avatar azcom
Browse files

Minor update to keep recently fixed WEB-DL searches working for Newzbin...

Minor update to keep recently fixed WEB-DL searches working for Newzbin provider. Newzbin corrected their attribute from Web-DL to WEB-DL which stopped Sickbeard from finding results again.
parent b3a7afef
Branches
Tags
No related merge requests found
...@@ -164,8 +164,8 @@ class NewzbinProvider(generic.NZBProvider): ...@@ -164,8 +164,8 @@ class NewzbinProvider(generic.NZBProvider):
video_fmt = 'Video Fmt' in attrs and ('x264' in attrs['Video Fmt'] or 'H.264' in attrs['Video Fmt']) \ 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']) and ('720p' in attrs['Video Fmt'])
# Source: Web-DL # Source: WEB-DL
source = 'Source' in attrs and 'Web-dl' in attrs['Source'] source = 'Source' in attrs and 'WEB-DL' in attrs['Source']
# Subtitles: (None) # Subtitles: (None)
subs = 'Subtitles' not in attrs subs = 'Subtitles' not in attrs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment