mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Trimming only feeds that were fetched once, to ensure they have stories used to compare duplicate feeds.
This commit is contained in:
parent
44af86e359
commit
7cc6681acd
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Command(BaseCommand):
|
|||
|
||||
def handle(self, *args, **options):
|
||||
|
||||
feeds = Feed.objects.all()
|
||||
feeds = Feed.objects.filter(fetched_once=True)
|
||||
for f in feeds:
|
||||
f.trim_feed()
|
||||
|
Loading…
Add table
Reference in a new issue