mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Upping feed fetches.
This commit is contained in:
parent
bd2ad514ea
commit
3eaad16adf
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue