mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Counting stories for 1% of all fetches, regardless of new stories. Should push back feeds with no new stories for a while.
This commit is contained in:
parent
eaf5c72ae4
commit
10e265d0c4
1 changed files with 1 additions and 1 deletions
|
@ -473,7 +473,7 @@ class Feed(models.Model):
|
|||
self.count_subscribers(recount=recount)
|
||||
self.calculate_last_story_date()
|
||||
|
||||
if force or has_new_stories:
|
||||
if force or has_new_stories or count_extra:
|
||||
self.save_feed_stories_last_month()
|
||||
|
||||
if force or (has_new_stories and count_extra):
|
||||
|
|
Loading…
Add table
Reference in a new issue