From 799b665f15d93072fea2f9860ec640fe0fc5a4e8 Mon Sep 17 00:00:00 2001 From: Tristan Fischer Date: Tue, 9 Oct 2012 00:18:31 +0300 Subject: [PATCH] fix audio scoring The elements of name_scores are compared to a lower-cased version of the release name so they need to be also lower cased. --- couchpotato/core/plugins/score/scores.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/score/scores.py b/couchpotato/core/plugins/score/scores.py index 385e3a95..8afa129c 100644 --- a/couchpotato/core/plugins/score/scores.py +++ b/couchpotato/core/plugins/score/scores.py @@ -10,7 +10,7 @@ name_scores = [ # Video 'x264:1', 'h264:1', # Audio - 'DTS:4', 'AC3:2', + 'dts:4', 'ac3:2', # Quality '720p:10', '1080p:10', 'bluray:10', 'dvd:1', 'dvdrip:1', 'brrip:1', 'bdrip:1', 'bd50:1', 'bd25:1', # Language / Subs