From bf33b91aaba64a918b0e6a216044773d98e9ab5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Mon, 24 Oct 2022 17:42:31 +0200 Subject: [PATCH] Use standard space-separated scopes for Reddit --- .../OpenIddictClientWebIntegrationHandlers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs b/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs index 1a4643fb..b24e14d5 100644 --- a/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs +++ b/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs @@ -422,7 +422,7 @@ public static partial class OpenIddictClientWebIntegrationHandlers { // The following providers are known to use comma-separated scopes instead of // the standard format (that requires using a space as the scope separator): - Providers.Deezer or Providers.Reddit => string.Join(",", context.Scopes), + Providers.Deezer => string.Join(",", context.Scopes), _ => context.Request.Scope };