mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-14 00:12:06 +01:00
Fix bug caused by false field comparison in SubkeyIdentifier
This commit is contained in:
parent
18376f2a67
commit
b8e6cd4f1c
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class SubkeyIdentifier(
|
|||
val subkeyId = subkeyFingerprint.keyId
|
||||
val primaryKeyId = primaryKeyFingerprint.keyId
|
||||
|
||||
val isPrimaryKey = keyId == subkeyId
|
||||
val isPrimaryKey = primaryKeyId == subkeyId
|
||||
|
||||
fun matches(fingerprint: OpenPgpFingerprint) =
|
||||
primaryKeyFingerprint == fingerprint || subkeyFingerprint == fingerprint
|
||||
|
|
Loading…
Reference in a new issue