fix(gateway): acknowledge WebSocket subprotocol to unblock agent chat (#1954)
This commit is contained in:
parent
3ac53297ca
commit
f836291200
@ -129,7 +129,8 @@ pub async fn handle_ws_chat(
|
||||
}
|
||||
}
|
||||
|
||||
ws.on_upgrade(move |socket| handle_socket(socket, state))
|
||||
ws.protocols(["zeroclaw.v1"])
|
||||
.on_upgrade(move |socket| handle_socket(socket, state))
|
||||
.into_response()
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user