squad-openclaw 2026.2.2006 → 2026.2.2007
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 +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2096,9 +2096,10 @@ function squadAppPlugin(api) {
|
|
|
2096
2096
|
respond(true, { tools: [...coreTools, ...groups, ...pluginTools] });
|
|
2097
2097
|
}
|
|
2098
2098
|
);
|
|
2099
|
-
const
|
|
2099
|
+
const relayState = readRelayState();
|
|
2100
|
+
const relayEnabled = !!(relayState.claimToken || relayState.roomId);
|
|
2100
2101
|
if (relayEnabled) {
|
|
2101
|
-
const relayUrl =
|
|
2102
|
+
const relayUrl = "wss://relay.squad.ceo";
|
|
2102
2103
|
startRelayClient(api, relayUrl);
|
|
2103
2104
|
}
|
|
2104
2105
|
}
|
package/package.json
CHANGED