mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-05 12:05:58 +01:00
Fix index per key-id for invalidated keys
This commit is contained in:
parent
35a01a16da
commit
da438eba2a
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class WebOfTrust(private val certificateStore: PGPCertificateStore) {
|
||||||
byFingerprint.putIfAbsent(certFingerprint, cert)
|
byFingerprint.putIfAbsent(certFingerprint, cert)
|
||||||
|
|
||||||
// index by key-ID
|
// index by key-ID
|
||||||
cert.validSubkeys.forEach {
|
cert.keys.publicKeys.forEach {
|
||||||
byKeyId.getOrPut(it.keyID) { mutableListOf() }.add(cert)
|
byKeyId.getOrPut(it.keyID) { mutableListOf() }.add(cert)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue