Skip to content

Commit fce6356

Browse files
Merge pull request #193 from Richasy/anran/fixSeparator
Change WindowsProvider permission scope separator to space
2 parents d413fa8 + 17cffdf commit fce6356

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)