mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-15 00:42:06 +01:00
Fix returning proper value for KeyRingInfo.lastModified
While porting to kotlin the code was accidentally changed to return the key ring creation time instead of the latest self-sig creation time
This commit is contained in:
parent
d966349032
commit
f1610f6425
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ class KeyRingInfo(
|
||||||
.plus(signatures.userIdRevocations.values)
|
.plus(signatures.userIdRevocations.values)
|
||||||
.plus(signatures.subkeyBindings.values)
|
.plus(signatures.subkeyBindings.values)
|
||||||
.plus(signatures.subkeyRevocations.values)
|
.plus(signatures.subkeyRevocations.values)
|
||||||
.maxByOrNull { creationDate }
|
.maxByOrNull { it.creationTime }
|
||||||
/**
|
/**
|
||||||
* Return the creation time of the latest added subkey.
|
* Return the creation time of the latest added subkey.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue