mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
Fix typo
This commit is contained in:
parent
841b90d580
commit
3d55950c4d
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ class Claim {
|
||||||
if (this._state !== E.ClaimState.VERIFIED) {
|
if (this._state !== E.ClaimState.VERIFIED) {
|
||||||
throw new Error('This claim has not yet been verified')
|
throw new Error('This claim has not yet been verified')
|
||||||
}
|
}
|
||||||
return this.verification
|
return this._verification
|
||||||
_
|
_
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -332,7 +332,7 @@ class Claim {
|
||||||
fingerprint: this._fingerprint,
|
fingerprint: this._fingerprint,
|
||||||
state: this._state,
|
state: this._state,
|
||||||
dataMatches: this._dataMatches,
|
dataMatches: this._dataMatches,
|
||||||
verification: _this.verification,
|
verification: this._verification,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue