Fix handling users without selfCertifications

This commit is contained in:
Yarmo Mackenbach 2020-12-26 13:56:36 +01:00
parent 47e538770c
commit 32c01756d3

View file

@ -159,6 +159,7 @@ const process = (publicKey) => {
}, },
} }
if ('selfCertifications' in user && user.selfCertifications.length >= 0) {
const notations = user.selfCertifications[0].rawNotations const notations = user.selfCertifications[0].rawNotations
usersOutput[i].notations = notations.map( usersOutput[i].notations = notations.map(
({ name, value, humanReadable }) => { ({ name, value, humanReadable }) => {
@ -167,6 +168,9 @@ const process = (publicKey) => {
} }
} }
) )
} else {
usersOutput[i].notations = []
}
}) })
resolve({ resolve({