mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-31 14:11:05 +00:00
Don't skip unfetched feeds.
This commit is contained in:
parent
3e6329b3e5
commit
0e767e65c3
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ class Dispatcher:
|
|||
weight = "-"
|
||||
quick = "-"
|
||||
rand = "-"
|
||||
elif self.options.get('quick') and feed.known_good and feed.fetched_once:
|
||||
elif self.options.get('quick') and not self.options['force'] and feed.known_good and feed.fetched_once:
|
||||
weight = feed.stories_last_month * feed.num_subscribers
|
||||
random_weight = random.randint(1, max(weight, 1))
|
||||
quick = float(self.options['quick'])
|
||||
|
|
Loading…
Add table
Reference in a new issue