Don't add default profile if status is done

This commit is contained in:
Ruud
2014-06-16 22:06:39 +02:00
parent 3faece0b4c
commit 76126271fc
+1 -1
View File
@@ -90,7 +90,7 @@ class MovieBase(MovieTypeBase):
# Default profile and category
default_profile = {}
if not params.get('profile_id'):
if not params.get('profile_id') and status != 'done':
default_profile = fireEvent('profile.default', single = True)
cat_id = params.get('category_id')