This commit is contained in:
Yarmo Mackenbach 2021-06-03 15:03:18 +02:00
parent f6338bbfac
commit 0e6c0574b9
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1

View file

@ -251,7 +251,7 @@ exports.process = (publicKey) => {
const notations = selfCertification.rawNotations const notations = selfCertification.rawNotations
usersOutput[i].claims = notations usersOutput[i].claims = notations
.filter(({ name, humanReadable }) => humanReadable && name === 'proof@metacode.biz') .filter(({ name, humanReadable }) => humanReadable && name === 'proof@metacode.biz')
.map(({ value }) => new Claim(openpgp.util.decode_utf8(value)), fingerprint) .map(({ value }) => new Claim(openpgp.util.decode_utf8(value), fingerprint))
usersOutput[i].userData.isRevoked = selfCertification.revoked usersOutput[i].userData.isRevoked = selfCertification.revoked
} }