mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Change parse 1080p Bluray AVC/VC1 to a quality instead of unknown.
This commit is contained in:
parent
74b6e60037
commit
f6f0323248
2 changed files with 3 additions and 0 deletions
|
@ -137,6 +137,7 @@
|
|||
* Change use value of "Update shows during hour" in General Settings straight after it is saved instead of after restart
|
||||
* Change add tips for what to use for Growl notifications on Windows
|
||||
* Change if a newly added show is not found on indexer, remove already created empty folder
|
||||
* Change parse 1080p Bluray AVC/VC1 to a quality instead of unknown
|
||||
|
||||
|
||||
[develop changelog]
|
||||
|
|
|
@ -270,6 +270,8 @@ class Quality:
|
|||
# p2p
|
||||
elif checkName(['720HD'], all) and not checkName(['(1080|2160)[pi]'], all):
|
||||
return Quality.HDTV
|
||||
elif checkName(['1080p', 'blu.?ray|hddvd|b[r|d]rip', 'avc|vc[-\s.]?1'], all):
|
||||
return Quality.FULLHDBLURAY
|
||||
else:
|
||||
return Quality.UNKNOWN
|
||||
|
||||
|
|
Loading…
Reference in a new issue