Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed Oct 25, 2024
1 parent c919fd0 commit 961116d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/cass/profile/EcAssertion.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ module.exports = class EcAssertion extends Assertion {
equals(obj) {
return this.isId(obj.id);
}
async decrypt() {
async decrypt(eim) {
eim = eim || EcIdentityManager.default;
let a = new Assertion().copyFrom(this);
a.setSubject(await this.getSubject(eim));
a.setAgent(await this.getAgent(eim));
Expand Down

0 comments on commit 961116d

Please sign in to comment.