From ad2976dbcce4eedfc56c4f75f92e7dbeb130e659 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Sun, 11 Aug 2024 13:42:42 +0200 Subject: [PATCH] SOP: KeyReader is silent --- pgpainless-sop/src/main/kotlin/org/pgpainless/sop/KeyReader.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgpainless-sop/src/main/kotlin/org/pgpainless/sop/KeyReader.kt b/pgpainless-sop/src/main/kotlin/org/pgpainless/sop/KeyReader.kt index 0931a3a5..2ce608ca 100644 --- a/pgpainless-sop/src/main/kotlin/org/pgpainless/sop/KeyReader.kt +++ b/pgpainless-sop/src/main/kotlin/org/pgpainless/sop/KeyReader.kt @@ -49,7 +49,7 @@ class KeyReader { ): PGPPublicKeyRingCollection { val certs = try { - PGPainless.readKeyRing().keyRingCollection(certIn, false) + PGPainless.readKeyRing().keyRingCollection(certIn, true) } catch (e: IOException) { if (e.message == null) { throw e