squad-openclaw 2026.2.1812 → 2026.2.1813

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/dist/index.js +8 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1290,6 +1290,14 @@ var RelayClient = class {
1290
1290
  return;
1291
1291
  }
1292
1292
  this.injectDeviceIdentity(conn, msg);
1293
+ if (conn.localWs.readyState === NodeWebSocket.CONNECTING) {
1294
+ conn.localWs.once("open", () => {
1295
+ conn.localWs.send(JSON.stringify(msg));
1296
+ });
1297
+ } else {
1298
+ conn.localWs.send(JSON.stringify(msg));
1299
+ }
1300
+ return;
1293
1301
  }
1294
1302
  if (!conn.connectHandshakeComplete) {
1295
1303
  conn.pendingMessages.push(msg);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-openclaw",
3
- "version": "2026.2.1812",
3
+ "version": "2026.2.1813",
4
4
  "description": "Entity registry, filesystem tools, and version management plugin for OpenClaw gateway",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",