allow larger smart edits for now(1000)

This commit is contained in:
j 2014-02-07 04:41:01 +00:00
parent 5271731a77
commit ec946213e7
1 changed files with 1 additions and 1 deletions

View File

@ -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: