Fix shorthand check on user revoked status in getPrimaryUser method (#1623)
This commit is contained in:
parent
e63ab3db4f
commit
ac223bb8a6
|
@ -469,7 +469,7 @@ class Key {
|
|||
throw exception || new Error('Could not find primary user');
|
||||
}
|
||||
await Promise.all(users.map(async function (a) {
|
||||
return a.user.revoked || a.user.isRevoked(a.selfCertification, null, date, config);
|
||||
return a.selfCertification.revoked || a.user.isRevoked(a.selfCertification, null, date, config);
|
||||
}));
|
||||
// sort by primary user flag and signature creation time
|
||||
const primaryUser = users.sort(function(a, b) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user