Merge branch 'feat/open-hive' into feature/queen-worker-comm

This commit is contained in:
Timothy
2026-03-01 16:06:43 -08:00
14 changed files with 32 additions and 142 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ async def handle_resume(request: web.Request) -> web.Response:
return web.json_response({"error": "Session not found"}, status=404)
try:
state = json.loads(state_path.read_text())
state = json.loads(state_path.read_text(encoding="utf-8"))
except (json.JSONDecodeError, OSError) as e:
return web.json_response({"error": f"Failed to read session: {e}"}, status=500)