mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 13:35:58 +00:00
Boosting single subscriber feeds that publish once a month from 12 hours to 6 hours.
This commit is contained in:
parent
b571e74242
commit
ddc8563080
1 changed files with 1 additions and 1 deletions
|
@ -2151,7 +2151,7 @@ class Feed(models.Model):
|
|||
if subs > 1:
|
||||
total = 60 - (spd * 60)
|
||||
else:
|
||||
total = 60*12 - (spd * 60*12)
|
||||
total = 60*6 - (spd * 60*6)
|
||||
elif spd == 0:
|
||||
if subs > 1:
|
||||
total = 60 * 6
|
||||
|
|
Loading…
Add table
Reference in a new issue