Add CP tag only when renamer or unique tag is enabled.

This commit is contained in:
Ruud
2014-10-04 14:33:51 +02:00
parent 158f638fb9
commit 78ba855c68
+9 -7
View File
@@ -370,14 +370,16 @@ class Plugin(object):
def cpTag(self, media, unique_tag = False):
identifier = getIdentifier(media) or ''
unique_tag = ', ' + randomString() if unique_tag else ''
tag = ''
if Env.setting('enabled', 'renamer') or unique_tag:
identifier = getIdentifier(media) or ''
unique_tag = ', ' + randomString() if unique_tag else ''
tag = '.cp('
tag += identifier
tag += ', ' if unique_tag and identifier else ''
tag += randomString() if unique_tag else ''
tag += ')'
tag = '.cp('
tag += identifier
tag += ', ' if unique_tag and identifier else ''
tag += randomString() if unique_tag else ''
tag += ')'
return tag if len(tag) > 7 else ''