Use system timezone for bookmark's "Added date"

This commit is contained in:
Arpit 2020-06-06 22:58:43 +05:30
parent 81d1fd1e6a
commit 9275baabd2
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ def _import_bookmark_tag(bookmark_tag: bs4.Tag, user: User):
bookmark = _get_or_create_bookmark(url, user) bookmark = _get_or_create_bookmark(url, user)
bookmark.url = url bookmark.url = url
bookmark.date_added = datetime.utcfromtimestamp(int(link_tag['add_date'])) add_date = link_tag.get('add_date', datetime.now().timestamp())
bookmark.date_added = datetime.utcfromtimestamp(int(add_date)).astimezone()
bookmark.date_modified = bookmark.date_added bookmark.date_modified = bookmark.date_added
bookmark.unread = link_tag.get('toread', '0') == '1' bookmark.unread = link_tag.get('toread', '0') == '1'
bookmark.title = link_tag.string bookmark.title = link_tag.string