@@ -194,7 +194,7 @@ class NewContentIdTask(object):
if result:
for item in result:
content_status = item[0]
- if content_status != self.TASK_INIT_STATUS:
+ if content_status not in {self.TASK_INIT_STATUS, self.TASK_PUBLISHED_STATUS} :
return True
return False
else: