mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-26 14:22:05 +01:00
Fix Picking of Subkey Revocation Signatures
This commit is contained in:
parent
15736586dd
commit
bbc68e9803
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ public final class SignaturePicker {
|
|||
throw new IllegalArgumentException("Primary key cannot have subkey binding revocations.");
|
||||
}
|
||||
|
||||
List<PGPSignature> signatures = getSortedSignaturesOfType(subkey, SignatureType.SUBKEY_BINDING);
|
||||
List<PGPSignature> signatures = getSortedSignaturesOfType(subkey, SignatureType.SUBKEY_REVOCATION);
|
||||
PGPSignature latestSubkeyRevocation = null;
|
||||
|
||||
for (PGPSignature signature : signatures) {
|
||||
|
|
Loading…
Reference in a new issue