agentgui 1.0.999 → 1.0.1000

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/ws-setup.js +4 -0
  2. package/package.json +1 -1
package/lib/ws-setup.js CHANGED
@@ -60,6 +60,10 @@ export function createWsSetup(server, { BASE_URL, watch, staticDir, _assetCache,
60
60
  }
61
61
  debugLog(`[WebSocket] Client ${ws.clientId} disconnected`);
62
62
  });
63
+ } else {
64
+ // No handler owns this route - close it rather than leaving an
65
+ // authenticated socket open and idle (it would never be serviced).
66
+ ws.close(4404, 'unknown-route');
63
67
  }
64
68
  });
65
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.999",
3
+ "version": "1.0.1000",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "electron/main.js",