First quality in profile is always "finish"

This commit is contained in:
Ruud
2011-09-07 18:30:41 +02:00
parent 5489215ffe
commit f5fc295dee
+1 -1
View File
@@ -54,7 +54,7 @@ class ProfilePlugin(Plugin):
for type in params.get('types', []):
t = ProfileType(
order = order,
finish = type.get('finish'),
finish = type.get('finish') if order > 0 else 1,
wait_for = params.get('wait_for'),
quality_id = type.get('quality_id')
)