Fix browser-info timeout y clipboard en Windows

- Agregar case 'getClientInfo' faltante en websocket-server switch
- Clipboard: usar execSync input en vez de embeber token en shell string
This commit is contained in:
2026-02-13 01:13:59 -06:00
parent ba1f00b2a0
commit 6f3479b3b5
4 changed files with 40 additions and 7 deletions

View File

@@ -367,6 +367,10 @@ wss.on('connection', (ws, req) => {
handleToolResponse(data);
break;
case 'getClientInfo':
handleGetClientInfo(ws, clientChannel, data);
break;
case 'clearRegistry':
handleClearRegistry(ws, data);
break;