use dateparser for parsing, let it handle error

This commit is contained in:
apkallum 2020-07-16 19:35:13 -04:00
parent 58ac44c867
commit b7785c4138
3 changed files with 7 additions and 6 deletions

View file

@ -190,10 +190,10 @@ class Link:
for key, val in json_info.items()
if key in cls.field_names()
}
try:
info['updated'] = int(parse_date(info.get('updated'))) # Cast to int which comes with rounding down
except (ValueError, TypeError):
info['updated'] = None
# try:
info['updated'] = 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 {}