mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Pushing out feed updates to cope with influx.
This commit is contained in:
parent
639ad60ba1
commit
00591ee7ad
1 changed files with 2 additions and 2 deletions
|
@ -1260,9 +1260,9 @@ class Feed(models.Model):
|
|||
if self.active_premium_subscribers >= 3:
|
||||
total = min(total, 60) # 1 hour minimum for premiums
|
||||
elif self.active_premium_subscribers >= 2:
|
||||
total = min(total, 3*60)
|
||||
total = min(total, 6*60)
|
||||
elif self.active_premium_subscribers >= 1:
|
||||
total = min(total, 12*60)
|
||||
total = min(total, 24*60)
|
||||
|
||||
if self.is_push:
|
||||
total = total * 20
|
||||
|
|
Loading…
Add table
Reference in a new issue