@eclaw/openclaw-channel 1.0.12 → 1.0.13

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/gateway.js +1 -4
  2. package/package.json +1 -1
package/dist/gateway.js CHANGED
@@ -88,10 +88,7 @@ export async function startAccount(ctx) {
88
88
  console.log(`[E-Claw] Bound entity ${account.entityId}, publicCode: ${bindData.publicCode}`);
89
89
  }
90
90
  else {
91
- console.log(`[E-Claw] Entity ${account.entityId} already bound`);
92
- const bindData = await client.bindEntity(account.entityId, account.botName);
93
- console.log(`[E-Claw] Retrieved credentials for entity ${account.entityId}`);
94
- void bindData;
91
+ console.log(`[E-Claw] Entity ${account.entityId} already bound, skipping bind`);
95
92
  }
96
93
  console.log(`[E-Claw] Account ${accountId} ready!`);
97
94
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclaw/openclaw-channel",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "E-Claw channel plugin for OpenClaw — AI chat platform for live wallpaper entities",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",