From 74fd7c684ed003cdf239fe4541f97242b5a97bd5 Mon Sep 17 00:00:00 2001 From: Wouter van Os Date: Sun, 23 Mar 2014 15:18:18 +0100 Subject: [PATCH] Fixed first item in quality group First item within a quality group had always 3d on "true". --- couchpotato/core/plugins/profile/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/profile/main.py b/couchpotato/core/plugins/profile/main.py index 8acf93e4..a7fdcd41 100644 --- a/couchpotato/core/plugins/profile/main.py +++ b/couchpotato/core/plugins/profile/main.py @@ -89,7 +89,7 @@ class ProfilePlugin(Plugin): profile['qualities'].append(type.get('quality')) profile['wait_for'].append(tryInt(type.get('wait_for'))) profile['finish'].append((tryInt(type.get('finish')) == 1) if order > 0 else True) - profile['3d'].append((tryInt(type.get('3d')) == 1) if order > 0 else True) + profile['3d'].append(tryInt(type.get('3d'))) order += 1 id = kwargs.get('id')