diff --git a/pandora/edit/models.py b/pandora/edit/models.py index 1b7ba5a8..f7855e46 100644 --- a/pandora/edit/models.py +++ b/pandora/edit/models.py @@ -209,7 +209,7 @@ class Edit(models.Model): if self.type == 'static': clips = [c.json(user) for c in qs.order_by('index')] else: - if qs.count() <= 100: + if qs.count() <= 1000: clips = [c.edit_json(user) for c in qs] index = 0 for c in clips: