From b3e507494fc5ed9736764454d6f0a1e18c3896da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A4nnetz?= <34142036+Haennetz@users.noreply.github.com> Date: Sat, 9 Mar 2024 14:49:04 +0100 Subject: [PATCH] use empty response --- src/auth/oidc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/oidc.rs b/src/auth/oidc.rs index b7cbb47..e25993c 100644 --- a/src/auth/oidc.rs +++ b/src/auth/oidc.rs @@ -192,6 +192,6 @@ pub mod role { .allowed_redirect_uris(allowed_redirect_uris) .build() .unwrap(); - api::exec_with_empty_result(client, endpoint).await + api::exec_with_empty(client, endpoint).await } }