Fix index per key-id for invalidated keys

This commit is contained in:
Paul Schaub 2023-07-11 00:51:00 +02:00
parent 35a01a16da
commit da438eba2a
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ class WebOfTrust(private val certificateStore: PGPCertificateStore) {
byFingerprint.putIfAbsent(certFingerprint, cert)
// index by key-ID
cert.validSubkeys.forEach {
cert.keys.publicKeys.forEach {
byKeyId.getOrPut(it.keyID) { mutableListOf() }.add(cert)
}