mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
Fixing starred story timestamp issue. Thanks for uncovering this @sictiru.
This commit is contained in:
parent
1838389888
commit
c469608fc6
1 changed files with 1 additions and 1 deletions
|
@ -770,7 +770,7 @@ def load_single_feed(request, feed_id):
|
|||
starred_date = localtime_for_timezone(starred_story['starred_date'],
|
||||
user.profile.timezone)
|
||||
story['starred_date'] = format_story_link_date__long(starred_date, now)
|
||||
story['starred_timestamp'] = starred_date.strftime('%s')
|
||||
story['starred_timestamp'] = int(starred_date.timestamp())
|
||||
story['user_tags'] = starred_story['user_tags']
|
||||
story['user_notes'] = starred_story['user_notes']
|
||||
story['highlights'] = starred_story['highlights']
|
||||
|
|
Loading…
Add table
Reference in a new issue