We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38ce68f commit cb10571Copy full SHA for cb10571
1 file changed
‎src/ledgermind/server/cli.py‎
@@ -884,7 +884,8 @@ def sync_transcript_history(bridge, transcript_path: str) -> set:
884
if isinstance(ctx, str):
885
try:
886
ctx = json.loads(ctx)
887
- except:
+ except json.JSONDecodeError as e:
888
+ global_console.print(f"[yellow]Warning: Failed to parse context JSON: {e}[/yellow]")
889
ctx = {}
890
if isinstance(ctx, dict) and "transcript_id" in ctx:
891
processed_ids.add(ctx["transcript_id"])
0 commit comments