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; }