Private GIT

Skip to content
Snippets Groups Projects
Commit d13ebe78 authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Add missing case for 720p HDDVD to count as 720p BluRay

parent 0fcf9819
Branches
Tags
No related merge requests found
...@@ -132,7 +132,7 @@ class Quality: ...@@ -132,7 +132,7 @@ class Quality:
return Quality.HDTV return Quality.HDTV
elif checkName(["720p", "web.dl"], all) or checkName(["720p", "itunes", "h.?264"], all): elif checkName(["720p", "web.dl"], all) or checkName(["720p", "itunes", "h.?264"], all):
return Quality.HDWEBDL return Quality.HDWEBDL
elif checkName(["720p", "bluray", "x264"], all): elif checkName(["720p", "bluray", "x264"], all) or checkName(["720p", "hddvd", "x264"], all):
return Quality.HDBLURAY return Quality.HDBLURAY
elif checkName(["1080p", "bluray", "x264"], all) or checkName(["1080p", "hddvd", "x264"], all): elif checkName(["1080p", "bluray", "x264"], all) or checkName(["1080p", "hddvd", "x264"], all):
return Quality.FULLHDBLURAY return Quality.FULLHDBLURAY
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment