From 121429e16158ffd955da3dac22a4477b9d909a36 Mon Sep 17 00:00:00 2001 From: Ryo Takahashi Date: Sat, 23 Dec 2023 17:39:32 +0900 Subject: [PATCH] Fix example code of x5c header in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c3a2250..52427485 100644 --- a/README.md +++ b/README.md @@ -561,7 +561,7 @@ crls = crl_uris.map do |uri| end begin - JWT.decode(token, nil, true, { x5c: { root_certificates: root_certificates, crls: crls }) + JWT.decode(token, nil, true, { x5c: { root_certificates: root_certificates, crls: crls } }) rescue JWT::DecodeError # Handle error, e.g. x5c header certificate revoked or expired end