mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing read stories that are read after the mark_read date, but they are post dated.
This commit is contained in:
parent
2d365f01e3
commit
918acf6607
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ def load_single_feed(request):
|
|||
userstory = UserStory.objects.filter(
|
||||
user=user,
|
||||
feed=feed.id,
|
||||
read_date__gt=usersub.mark_read_date
|
||||
read_date__gt=stories[-1:]['story_date']
|
||||
).values()
|
||||
for story in stories:
|
||||
for o in userstory:
|
||||
|
|
Loading…
Add table
Reference in a new issue