mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-17 08:34:26 -04:00
fix: status was raising error
This commit is contained in:
parent
a4e1bebc46
commit
9aa934a410
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ def parse_json_snapshot_details(out_dir: Union[Path, str]) -> Iterator[dict]:
|
|||
if entry.is_dir(follow_symlinks=True):
|
||||
if (Path(entry.path) / 'index.json').exists():
|
||||
try:
|
||||
snapshot_details = load_json_snapshot_details(entry.path)
|
||||
snapshot_details = load_json_snapshot(Path(entry.path))
|
||||
except KeyError:
|
||||
snapshot_details = None
|
||||
if snapshot_details:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue