From ec946213e71dce11d0bbebad88303a298ed367f9 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 7 Feb 2014 04:41:01 +0000 Subject: [PATCH] allow larger smart edits for now(1000) --- pandora/edit/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: