openclaw-quiubo 2.6.48 → 2.6.49

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
@@ -14907,7 +14907,7 @@ async function fetchGroupContext(config, sessionKey) {
14907
14907
  groupType: group.groupType ?? "standard",
14908
14908
  e2ee: e2eeEnabled,
14909
14909
  members: members.map((m) => ({
14910
- displayName: m.displayName ?? m.identityId,
14910
+ displayName: m.displayName ?? m.username ?? m.identityId,
14911
14911
  isBot: botIdentityIds.has(m.identityId),
14912
14912
  role: m.role
14913
14913
  })),