forked from 0x2620/pandora
update sort/find/facets after saving
This commit is contained in:
parent
f31a2dfc2b
commit
a0e14d299b
1 changed files with 3 additions and 3 deletions
|
@ -358,15 +358,15 @@ class Item(models.Model):
|
||||||
else:
|
else:
|
||||||
self.poster_height = 128
|
self.poster_height = 128
|
||||||
self.poster_width = 80
|
self.poster_width = 80
|
||||||
self.update_find()
|
|
||||||
self.update_sort()
|
|
||||||
self.update_facets()
|
|
||||||
if not settings.USE_IMDB:
|
if not settings.USE_IMDB:
|
||||||
if self.poster_frame == -1 and self.sort.duration:
|
if self.poster_frame == -1 and self.sort.duration:
|
||||||
self.poster_frame = self.sort.duration/2
|
self.poster_frame = self.sort.duration/2
|
||||||
update_poster = True
|
update_poster = True
|
||||||
self.json = self.get_json()
|
self.json = self.get_json()
|
||||||
super(Item, self).save(*args, **kwargs)
|
super(Item, self).save(*args, **kwargs)
|
||||||
|
self.update_find()
|
||||||
|
self.update_sort()
|
||||||
|
self.update_facets()
|
||||||
if update_ids:
|
if update_ids:
|
||||||
for c in self.clips.all(): c.save()
|
for c in self.clips.all(): c.save()
|
||||||
for a in self.annotations.all():
|
for a in self.annotations.all():
|
||||||
|
|
Loading…
Reference in a new issue