From 3435910176a1ead64db0dbcc9d7e3b0c25f53dc7 Mon Sep 17 00:00:00 2001 From: Amaury Chamayou Date: Fri, 28 Jun 2024 08:41:31 +0000 Subject: [PATCH] fmt --- src/endpoints/authentication/jwt_auth.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/endpoints/authentication/jwt_auth.cpp b/src/endpoints/authentication/jwt_auth.cpp index e2525d4f6074..34c8d8686c43 100644 --- a/src/endpoints/authentication/jwt_auth.cpp +++ b/src/endpoints/authentication/jwt_auth.cpp @@ -76,7 +76,8 @@ namespace ccf // https://learn.microsoft.com/en-us/entra/identity-platform/access-tokens#validate-the-issuer. const auto url = ::http::parse_url_full(iss); - const auto tenant_id = first_non_empty_chunk(ccf::nonstd::split(url.path, "/")); + const auto tenant_id = + first_non_empty_chunk(ccf::nonstd::split(url.path, "/")); return tenant_id && tid && *tid == *tenant_id; }