We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fb5ecf commit 3312a34Copy full SHA for 3312a34
archivebox/parsers/generic_json.py
@@ -26,7 +26,7 @@ def jsonObjectToLink(link: str, source: str):
26
ts_str = str(datetime.now(timezone.utc).timestamp())
27
if link.get('timestamp'):
28
# chrome/ff histories use a very precise timestamp
29
- ts_str = str(link['timestamp'] / 10000000)
+ ts_str = str(link['timestamp'] / 1000000)
30
elif link.get('time'):
31
ts_str = str(json_date(link['time'].split(',', 1)[0]).timestamp())
32
elif link.get('created_at'):
0 commit comments