We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f977d47 commit 62d6c68Copy full SHA for 62d6c68
1 file changed
src/KK.AspNetCore.EasyAuthAuthentication/Services/EasyAuthForAuthorizationTokenService.cs
@@ -74,7 +74,7 @@ private IEnumerable<AADClaimsModel> BuildFromAuthToken(JObject xMsClientPrincipa
74
75
if (xMsClientPrincipal.ContainsKey(this.defaultOptions.RoleClaimType))
76
{
77
- this.logger.LogDebug($"payload was {xMsClientPrincipal[this.defaultOptions.RoleClaimType].ToString()}");
+ this.logger.LogDebug($"payload was {xMsClientPrincipal[this.defaultOptions.RoleClaimType]}");
78
79
claims.AddRange(JsonConvert.DeserializeObject<IEnumerable<string>>(xMsClientPrincipal[this.defaultOptions.RoleClaimType].ToString())
80
.Select(r => new AADClaimsModel { Typ = this.defaultOptions.RoleClaimType, Values = r }));
0 commit comments