mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Let's try using dates again in feed fetching existance checks.
This commit is contained in:
parent
6d8c34c752
commit
12891aabcf
1 changed files with 2 additions and 2 deletions
|
@ -206,8 +206,8 @@ class ProcessFeed:
|
||||||
# end_date = story.get('published')
|
# end_date = story.get('published')
|
||||||
story_guids.append(story.get('guid') or story.get('link'))
|
story_guids.append(story.get('guid') or story.get('link'))
|
||||||
existing_stories = MStory.objects(
|
existing_stories = MStory.objects(
|
||||||
story_guid__in=story_guids,
|
# story_guid__in=story_guids,
|
||||||
# story_date__gte=start_date,
|
story_date__gte=start_date,
|
||||||
story_feed_id=self.feed.pk
|
story_feed_id=self.feed.pk
|
||||||
).limit(len(story_guids))
|
).limit(len(story_guids))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue