nothumanallowed 6.3.4 → 6.3.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "6.3.4",
3
+ "version": "6.3.5",
4
4
  "description": "NotHumanAllowed — 38 AI agents for security, code, DevOps, data & daily ops. Per-agent memory, Telegram + Discord auto-responder, proactive intelligence daemon, voice chat, plugin system.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -918,7 +918,7 @@ export async function cmdUI(args) {
918
918
  }
919
919
  });
920
920
 
921
- wsServer.listen(3848, '127.0.0.1', () => {});
921
+ wsServer.listen(3848, HOST, () => {});
922
922
 
923
923
  server.on('error', (err) => {
924
924
  if (err.code === 'EADDRINUSE') {
package/src/constants.mjs CHANGED
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
5
5
  const __filename = fileURLToPath(import.meta.url);
6
6
  const __dirname = path.dirname(__filename);
7
7
 
8
- export const VERSION = '6.3.4';
8
+ export const VERSION = '6.3.5';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -840,7 +840,7 @@ var ws = null;
840
840
  var wsReconnectTimer = null;
841
841
  function connectWebSocket() {
842
842
  try {
843
- ws = new WebSocket('ws://127.0.0.1:3848');
843
+ ws = new WebSocket('ws://' + window.location.hostname + ':3848');
844
844
  } catch(e) { return; }
845
845
 
846
846
  ws.onopen = function() {