1
0

serial reconstruction

This commit is contained in:
Aiden
2026-05-25 15:38:39 +10:00
parent a82f3f6628
commit e872030675
10 changed files with 3660 additions and 82 deletions

View File

@@ -904,6 +904,10 @@ def _metadata_comments(ins: JsonObject) -> list[str]:
if isinstance(event, dict) and event.get("comment"):
comments.append(str(event["comment"]))
for item in ins.get("serial_reconstruction", []):
if isinstance(item, dict) and item.get("comment"):
comments.append(str(item["comment"]))
board_profile = ins.get("board_profile")
if isinstance(board_profile, dict) and board_profile.get("comment"):
comments.append(str(board_profile["comment"]))