openclaw-app 1.2.0 → 1.2.1
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/index.js +1 -1
- package/index.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -231,7 +231,7 @@ function getRelayState(accountId) {
|
|
|
231
231
|
}
|
|
232
232
|
// ── Account resolution ───────────────────────────────────────────────────────
|
|
233
233
|
/** Default relay deployed at https://github.com/openclaw/openclaw-app */
|
|
234
|
-
const DEFAULT_RELAY_URL = "wss://openclaw
|
|
234
|
+
const DEFAULT_RELAY_URL = "wss://openclaw.rewen.org";
|
|
235
235
|
const DEFAULT_ROOM_ID = "default";
|
|
236
236
|
function listAccountIds(cfg) {
|
|
237
237
|
const ids = Object.keys(cfg.channels?.[CHANNEL_ID]?.accounts ?? {});
|
package/index.ts
CHANGED
|
@@ -360,7 +360,7 @@ function getRelayState(accountId: string): RelayState {
|
|
|
360
360
|
// ── Account resolution ───────────────────────────────────────────────────────
|
|
361
361
|
|
|
362
362
|
/** Default relay deployed at https://github.com/openclaw/openclaw-app */
|
|
363
|
-
const DEFAULT_RELAY_URL = "wss://openclaw
|
|
363
|
+
const DEFAULT_RELAY_URL = "wss://openclaw.rewen.org";
|
|
364
364
|
const DEFAULT_ROOM_ID = "default";
|
|
365
365
|
|
|
366
366
|
interface ResolvedAccount {
|
package/openclaw.plugin.json
CHANGED