From ac223bb8a6d450e3f70e21f0de0f14f9a28a0432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Obernd=C3=B6rfer?= Date: Tue, 4 Apr 2023 14:57:34 +0200 Subject: [PATCH] Fix shorthand check on user revoked status in getPrimaryUser method (#1623) --- src/key/key.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/key/key.js b/src/key/key.js index f54e896c..49f0811e 100644 --- a/src/key/key.js +++ b/src/key/key.js @@ -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) {