mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 20:23:12 +00:00
fix: timestamp comparison in to_json function
This commit is contained in:
parent
175e6fa3d0
commit
98dda68897
1 changed files with 4 additions and 1 deletions
|
@ -190,7 +190,10 @@ class Link:
|
|||
for key, val in json_info.items()
|
||||
if key in cls.field_names()
|
||||
}
|
||||
info['updated'] = parse_date(info.get('updated'))
|
||||
try:
|
||||
info['updated'] = int(parse_date(info.get('updated'))) # Cast to int which comes with rounding down
|
||||
except (ValueError, TypeError):
|
||||
info['updated'] = None
|
||||
info['sources'] = info.get('sources') or []
|
||||
|
||||
json_history = info.get('history') or {}
|
||||
|
|
Loading…
Reference in a new issue