Browse Source

Merge pull request #3009 from wouter0100/patch-1

Fixed first item in quality group
pull/3039/head
Ruud Burger 11 years ago
parent
commit
3df1f1b153
  1. 2
      couchpotato/core/plugins/profile/main.py

2
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')

Loading…
Cancel
Save