mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-16 06:15:09 -05:00
Fixes web-dl quality detection for some episode naming patterns
This commit is contained in:
parent
9f1250d750
commit
257181ee4f
@ -222,13 +222,9 @@ class Quality:
|
||||
return Quality.RAWHDTV
|
||||
elif checkName(["1080p", "hdtv", "x264"], all):
|
||||
return Quality.FULLHDTV
|
||||
elif checkName(["720p", "web.dl", "h.?264"], all) or checkName(["720p", "itunes", "h.?264"], all):
|
||||
elif checkName(["720p", "web.dl|webrip"], all) or checkName(["720p", "itunes", "h.?264"], all):
|
||||
return Quality.HDWEBDL
|
||||
elif checkName(["1080p", "web.dl", "h.?264"], all) or checkName(["1080p", "itunes", "h.?264"], all):
|
||||
return Quality.FULLHDWEBDL
|
||||
elif checkName(["720p", "webrip", "x264"], all):
|
||||
return Quality.HDWEBDL
|
||||
elif checkName(["1080p", "webrip", "x264"], all):
|
||||
elif checkName(["1080p", "web.dl|webrip"], all) or checkName(["1080p", "itunes", "h.?264"], all):
|
||||
return Quality.FULLHDWEBDL
|
||||
elif checkName(["720p", "bluray|hddvd|b[r|d]rip", "x264"], all):
|
||||
return Quality.HDBLURAY
|
||||
|
Loading…
Reference in New Issue
Block a user