From 0599ec251268cd6b9ca06836f003f34ff6279b86 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Thu, 21 Mar 2024 00:27:43 +0100 Subject: [PATCH] chore(oauth2): fix type --- src/Application.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.hs b/src/Application.hs index 23275f94a..1aee0f2e0 100644 --- a/src/Application.hs +++ b/src/Application.hs @@ -368,7 +368,7 @@ makeFoundation appSettings''@AppSettings{..} = do -> error "Tenant ID missing!" oauth2Plugins | UserAuthConfSingleSource (AuthSourceConfAzureAdV2 AzureConf{..}) <- appUserAuthConf - = singleton $ oauth2AzureADScoped (Set.toList azureConfScopes) azureConfClientId azureConfClientSecret + = singleton $ oauth2AzureADScoped (Set.toList azureConfScopes) (tshow azureConfClientId) azureConfClientSecret | otherwise = mempty #endif