mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-05 03:55:58 +01:00
q cleanup targetUa check
This commit is contained in:
parent
20434ad9f6
commit
8dd5a65699
1 changed files with 3 additions and 5 deletions
|
@ -305,11 +305,9 @@ class Query(
|
|||
// User ID to authenticate the User ID. But if the target has
|
||||
// revoked it, then it can't be authenticated.
|
||||
val targetUa: RevocationState? = target.userIds[targetUserid]
|
||||
targetUa?.let {
|
||||
if (it.isEffective(network.referenceTime())) {
|
||||
logger.debug("{}: Target user id is revoked at reference time.", targetFpr)
|
||||
return hashMapOf()
|
||||
}
|
||||
if (targetUa != null && targetUa.isEffective(network.referenceTime())) {
|
||||
logger.debug("{}: Target user id is revoked at reference time.", targetFpr)
|
||||
return hashMapOf()
|
||||
}
|
||||
|
||||
// Dijkstra.
|
||||
|
|
Loading…
Reference in a new issue