Skip to content

Commit 17cffdf

Browse files
Richasymichael-hawker
authored andcommitted
Change permission scope separator to space
1 parent d413fa8 commit 17cffdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CommunityToolkit.Authentication.Uwp/WindowsProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ async void OnAccountCommandsRequested(AccountsSettingsPane sender, AccountsSetti
543543

544544
private WebTokenRequest GetWebTokenRequest(WebAccountProvider provider, string clientId, string[] scopes)
545545
{
546-
string scopesString = string.Join(',', scopes);
546+
string scopesString = string.Join(' ', scopes);
547547

548548
WebTokenRequest webTokenRequest = string.IsNullOrWhiteSpace(clientId)
549549
? new WebTokenRequest(provider, scopesString)

0 commit comments

Comments
 (0)