diff --git a/pgpainless-wot-cli/src/main/kotlin/org/pgpainless/wot/cli/format/SQWOTFormatter.kt b/pgpainless-wot-cli/src/main/kotlin/org/pgpainless/wot/cli/format/SQWOTFormatter.kt index 14e2dca7..27de7fb1 100644 --- a/pgpainless-wot-cli/src/main/kotlin/org/pgpainless/wot/cli/format/SQWOTFormatter.kt +++ b/pgpainless-wot-cli/src/main/kotlin/org/pgpainless/wot/cli/format/SQWOTFormatter.kt @@ -5,7 +5,6 @@ package org.pgpainless.wot.cli.format import org.pgpainless.wot.api.Binding -import org.pgpainless.wot.network.Depth import org.pgpainless.wot.network.EdgeComponent import java.text.SimpleDateFormat @@ -46,7 +45,7 @@ class SQWOTFormatter: Formatter { for ((eIndex, edge) in path.certifications.withIndex()) { val targetUserId = if (edge.userId == null) "" else " \"${edge.userId}\"" append(indent); appendLine("│ ${certDegree(edge.trustAmount)}the following " + - (if (edge.userId == null) "binding" else "certificate") + + (if (edge.userId != null) "binding" else "certificate") + " on ${dateFormat.format(edge.creationTime)}" + (if (edge.expirationTime == null) "" else " (expiry: ${dateFormat.format(edge.expirationTime)})") + introducerType(edge)