This commit is contained in:
Yarmo Mackenbach 2021-04-19 13:43:24 +02:00
parent 841b90d580
commit 3d55950c4d
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1

View file

@ -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,
} }
} }
} }