asdfasdfawds

This commit is contained in:
2026-04-03 10:21:51 -03:00
parent 3f76670169
commit fbf9984a5d
7 changed files with 92 additions and 35 deletions

View File

@@ -108,7 +108,8 @@ def load_frame_index(frames_dir: Path) -> list[dict]:
return []
try:
index = json.loads(index_path.read_text())
except (json.JSONDecodeError, IOError):
except (json.JSONDecodeError, IOError) as e:
log.debug("Failed to read frame index %s: %s", index_path, e)
return []
result = []
for entry in index: