|
Fix dead code in websocket.py — stream_start never sent on first message
websocket.py lines 301-308 were indented inside the `except` block after `raise`, making them unreachable. This meant `stream_start` and `_stream_to_client` never ran for the initial message send, so the client saw no response until page reload (when the reconnect path took over). Fix: dedent lines 301-308 so they execute after the try/except/finally block on the normal success path. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> |
|---|
|
|
| navi/api/websocket.py |
|---|