mirror of https://gitlab.com/bashrc2/epicyon
Use updated date if available
parent
9ff0b226f0
commit
6c56b786eb
|
@ -200,6 +200,8 @@ def _add_book_to_reader(reader_books_json: {}, book_dict: {}) -> None:
|
||||||
if 'timeline' not in reader_books_json:
|
if 'timeline' not in reader_books_json:
|
||||||
reader_books_json['timeline'] = {}
|
reader_books_json['timeline'] = {}
|
||||||
published = book_dict['published']
|
published = book_dict['published']
|
||||||
|
if book_dict.get('updated'):
|
||||||
|
published = book_dict['updated']
|
||||||
post_time_object = \
|
post_time_object = \
|
||||||
date_from_string_format(published, ["%Y-%m-%dT%H:%M:%S%z"])
|
date_from_string_format(published, ["%Y-%m-%dT%H:%M:%S%z"])
|
||||||
if post_time_object:
|
if post_time_object:
|
||||||
|
|
Loading…
Reference in New Issue