@agentvault/agentvault 0.19.56 → 0.19.57
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/cli.js +8 -2
- package/dist/cli.js.map +2 -2
- package/dist/index.js +8 -2
- package/dist/index.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -65830,11 +65830,17 @@ ${messageText}`;
|
|
|
65830
65830
|
}
|
|
65831
65831
|
}
|
|
65832
65832
|
if (!roomId) {
|
|
65833
|
-
|
|
65834
|
-
|
|
65833
|
+
if (data.room_id && this._persisted?.rooms?.[data.room_id]) {
|
|
65834
|
+
roomId = data.room_id;
|
|
65835
|
+
console.log(`[SecureChannel] Room ${roomId.slice(0, 8)} matched by room_id (group_id ${groupId?.slice(0, 8)} mismatch)`);
|
|
65836
|
+
} else {
|
|
65837
|
+
console.warn(`[SecureChannel] No room found for MLS group ${groupId?.slice(0, 8)}`);
|
|
65838
|
+
return;
|
|
65839
|
+
}
|
|
65835
65840
|
}
|
|
65836
65841
|
this._lastInboundRoomId = roomId;
|
|
65837
65842
|
const mlsGroup = this._mlsGroups.get(roomId);
|
|
65843
|
+
console.log(`[SecureChannel] MLS decrypt attempt room=${roomId.slice(0, 8)} group=${groupId?.slice(0, 8)} loaded=${!!mlsGroup} init=${mlsGroup?.isInitialized} mlsGroupsKeys=[${Array.from(this._mlsGroups.keys()).join(",")}]`);
|
|
65838
65844
|
if (!mlsGroup?.isInitialized) {
|
|
65839
65845
|
console.warn(`[SecureChannel] MLS group not loaded for room ${roomId.slice(0, 8)}`);
|
|
65840
65846
|
return;
|