mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
1 month max on next fetch.
This commit is contained in:
parent
decd50a610
commit
0d75d9ecd8
1 changed files with 4 additions and 0 deletions
|
@ -1241,6 +1241,10 @@ class Feed(models.Model):
|
|||
if self.is_push:
|
||||
total = total * 20
|
||||
|
||||
# 1 month max
|
||||
if total > 60*24*30:
|
||||
total = 60*24*30
|
||||
|
||||
if verbose:
|
||||
print "[%s] %s (%s/%s/%s/%s), %s, %s: %s" % (self, updates_per_day_delay,
|
||||
self.num_subscribers, self.active_subscribers,
|
||||
|
|
Loading…
Add table
Reference in a new issue