mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Moving to shared_story dates for unread counts on social subs.
This commit is contained in:
parent
0a4cb3a243
commit
432a26356a
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ def load_social_stories(request, user_id, username=None):
|
|||
story['read_status'] = 1
|
||||
elif not usersubs_map.get(story_feed_id):
|
||||
story['read_status'] = 0
|
||||
elif not story.get('read_status') and story['story_date'] < usersubs_map[story_feed_id].mark_read_date:
|
||||
elif not story.get('read_status') and story['shared_date'] < usersubs_map[story_feed_id].mark_read_date:
|
||||
story['read_status'] = 1
|
||||
elif not story.get('read_status') and story['shared_date'] < date_delta:
|
||||
story['read_status'] = 1
|
||||
|
|
Loading…
Add table
Reference in a new issue