mirror of
https://github.com/viq/NewsBlur.git
synced 2025-11-01 09:09:16 +00:00
Only counting subscribers for active subscriptions. Doh.
This commit is contained in:
parent
048b40897b
commit
1eb02db2d1
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ def load_feeds(request):
|
|||
if not sub.feed.active and not sub.feed.has_feed_exception and not sub.feed.has_page_exception:
|
||||
sub.feed.count_subscribers()
|
||||
sub.feed.schedule_feed_fetch_immediately()
|
||||
if sub.feed.active and sub.feed.active_subscribers <= 0:
|
||||
if sub.active and sub.feed.active_subscribers <= 0:
|
||||
sub.feed.count_subscribers()
|
||||
sub.feed.schedule_feed_fetch_immediately()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue