From f6f032324874f0acc928612feb510485555e9d7f Mon Sep 17 00:00:00 2001 From: JackDandy Date: Mon, 4 Dec 2017 13:06:27 +0000 Subject: [PATCH] Change parse 1080p Bluray AVC/VC1 to a quality instead of unknown. --- CHANGES.md | 1 + sickbeard/common.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 39954b35..97cf26c5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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] diff --git a/sickbeard/common.py b/sickbeard/common.py index b3495714..da2f14e6 100644 --- a/sickbeard/common.py +++ b/sickbeard/common.py @@ -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