openclaw-quiubo 2.6.19 → 2.6.21

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 CHANGED
@@ -14068,6 +14068,14 @@ function resolveOutboundGroupId(ctx) {
14068
14068
  }
14069
14069
  const targetGroupId = ctx.target?.groupId ?? raw.groupId;
14070
14070
  if (targetGroupId) return targetGroupId;
14071
+ const toField = ctx.to;
14072
+ if (toField) {
14073
+ const str = String(toField);
14074
+ if (!str.match(/^quiubo:/i)) {
14075
+ const cleaned = str.trim();
14076
+ if (cleaned) return cleaned;
14077
+ }
14078
+ }
14071
14079
  return void 0;
14072
14080
  }
14073
14081
  async function resolveAnnounceGroupId(accountId, log) {