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.
- package/dist/index.js +8 -0
- 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