mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Using wrong value in formatted stories. Story_guid is converted to id in format_stories. Doh.
This commit is contained in:
parent
7c994d368a
commit
4bd18662a0
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ def load_single_feed(request):
|
|||
classifier_authors.rewind()
|
||||
classifier_tags.rewind()
|
||||
classifier_titles.rewind()
|
||||
if story.get('story_guid') in userstories:
|
||||
if story['id'] in userstories:
|
||||
story['read_status'] = 1
|
||||
elif not story.get('read_status') and story['story_date'] < usersub.mark_read_date:
|
||||
story['read_status'] = 1
|
||||
|
|
Loading…
Add table
Reference in a new issue