mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing timestamp on starred story hashes.
This commit is contained in:
parent
a54f2a2bd5
commit
292b8e7b36
1 changed files with 1 additions and 1 deletions
|
@ -791,7 +791,7 @@ def starred_story_hashes(request):
|
|||
).only('story_hash', 'starred_date').order_by('-starred_date')
|
||||
|
||||
if include_timestamps:
|
||||
story_hashes = [(s.story_hash, s.starred_date.strftime("%f")) for s in mstories]
|
||||
story_hashes = [(s.story_hash, s.starred_date.strftime("%s")) for s in mstories]
|
||||
else:
|
||||
story_hashes = [s.story_hash for s in mstories]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue