@awebai/claude-channel 1.4.4 → 1.4.5
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/.claude-plugin/plugin.json +1 -1
- package/dist/index.js +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26403,6 +26403,11 @@ var SenderTrustManager = class {
|
|
|
26403
26403
|
if (!recipientDID || !selfDID) {
|
|
26404
26404
|
return status;
|
|
26405
26405
|
}
|
|
26406
|
+
if (recipientDID.startsWith("did:aw:")) {
|
|
26407
|
+
if (recipientStableID)
|
|
26408
|
+
return status;
|
|
26409
|
+
return selfStableID ? "identity_mismatch" : status;
|
|
26410
|
+
}
|
|
26406
26411
|
return recipientDID === selfDID ? status : "identity_mismatch";
|
|
26407
26412
|
}
|
|
26408
26413
|
async checkStableIdentityRegistry(status, trustAddress, fromDID, fromStableID) {
|