Fix incorrect async usage on client_credentials_for_provider

This commit is contained in:
Adis Veletanlic
2025-04-14 18:28:17 +02:00
parent e460b17d09
commit 97cd5e9be1
2 changed files with 2 additions and 3 deletions

View File

@@ -294,8 +294,7 @@ pub(crate) async fn handler(
lazy_metadata.token_endpoint().await?,
&keystore,
&encrypter,
)
.await?;
)?;
let redirect_uri = url_builder.upstream_oauth_callback(provider.id);

View File

@@ -139,4 +139,4 @@ fn client_credentials_for_provider(
};
Ok(client_credentials)
}
}