fix(metadata): hydrate cached records before saving

This commit is contained in:
pixelpaws
2025-10-10 08:30:51 +08:00
parent 76d3aa2b5b
commit ef03a2a917
3 changed files with 54 additions and 10 deletions

View File

@@ -30,6 +30,9 @@ class RecordingMetadataManager:
Path(metadata_path).write_text(json.dumps(metadata))
return True
async def hydrate_model_data(self, model_data: Dict[str, Any]) -> Dict[str, Any]:
return model_data
class RecordingPreviewService:
def __init__(self) -> None: