only update if clip is set

This commit is contained in:
j 2011-12-18 15:17:12 +05:30
parent 2c6f302cfb
commit 3fb3c6ef38

View file

@ -45,7 +45,7 @@ class Annotation(models.Model):
return False
def html(self):
if self.layer.type == 'string':
if self.layer == 'string':
return utils.html_parser(self.value)
else:
return self.value
@ -83,6 +83,7 @@ class Annotation(models.Model):
if set_public_id:
self.set_public_id()
if self.clip:
Clip.objects.filter(**{
'id': self.clip.id,
self.layer: False