Refactor to not use status: success, but HTTP codes, and renamed the error key to detail to match FastAPI's own.

This commit is contained in:
2025-08-06 22:09:55 +00:00
parent c8bb2ab12e
commit b255362946
6 changed files with 37 additions and 39 deletions
+2 -2
View File
@@ -57,8 +57,8 @@ class AwaitableWebSocket extends WebSocket {
console.error("Failed to parse JSON from WebSocket message", data, err)
throw new Error("Failed to parse JSON from WebSocket message")
}
if (parsed.error) {
throw new Error(`Server: ${parsed.error}`)
if (parsed.detail) {
throw new Error(`Server: ${parsed.detail}`)
}
return parsed
}