mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-11-01 09:09:51 +00:00
Moving to 3 hour min for premium sub feed fetch intervals (from 6 hours). This is for feeds with no activity.
This commit is contained in:
parent
db461357ed
commit
646fcb0819
1 changed files with 2 additions and 2 deletions
|
|
@ -2121,9 +2121,9 @@ class Feed(models.Model):
|
||||||
if len(fetch_history['push_history']):
|
if len(fetch_history['push_history']):
|
||||||
total = total * 12
|
total = total * 12
|
||||||
|
|
||||||
# 6 hour max for premiums, 48 hour max for free
|
# 3 hour max for premiums, 48 hour max for free
|
||||||
if subs >= 1:
|
if subs >= 1:
|
||||||
total = min(total, 60*6*1)
|
total = min(total, 60*3*1)
|
||||||
else:
|
else:
|
||||||
total = min(total, 60*24*2)
|
total = min(total, 60*24*2)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue