forked from Mirrors/doipjs
Fix reference to non-existent object key
This commit is contained in:
parent
3bc9404340
commit
c2a59d04c7
1 changed files with 2 additions and 2 deletions
|
@ -128,11 +128,11 @@ const process = async (signature) => {
|
|||
}
|
||||
|
||||
result.users[0].userData = {
|
||||
id: userData.userID ? userData.userID.userid : null,
|
||||
id: userData.userID ? userData.userID.userID : null,
|
||||
name: userData.userID ? userData.userID.name : null,
|
||||
email: userData.userID ? userData.userID.email : null,
|
||||
comment: userData.userID ? userData.userID.comment : null,
|
||||
isPrimary: primaryUserData.user.userID.userid === userData.userID.userid
|
||||
isPrimary: primaryUserData.user.userID.userID === userData.userID.userID
|
||||
}
|
||||
|
||||
result.primaryUserIndex = result.users[0].userData.isPrimary ? 0 : null
|
||||
|
|
Loading…
Reference in a new issue