Upping feed fetches.

This commit is contained in:
Samuel Clay 2013-04-12 17:41:18 -07:00
parent bd2ad514ea
commit 3eaad16adf

View file

@ -1305,9 +1305,9 @@ class Feed(models.Model):
if self.active_premium_subscribers >= 3:
total = min(total, 3*60) # 1 hour minimum for premiums
elif self.active_premium_subscribers >= 2:
total = min(total, 12*60)
total = min(total, 9*60)
elif self.active_premium_subscribers >= 1:
total = min(total, 24*60)
total = min(total, 18*60)
if self.is_push:
total = total * 20