Skip to content

Commit 7a4a605

Browse files
author
Tiago Brenck
committed
Merge branch 'master' into tibre/fix158
2 parents 8c5184b + 7a67374 commit 7a4a605

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

5-WebApp-AuthZ/5-1-Roles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ When you click on the page that fetches the signed-in user's roles and group ass
217217

218218
## Next steps
219219

220-
- Learn how to use app roles. [Add authorization using security groups & groups claims to a Web app thats signs-in users with the Microsoft identity platform](../../../../5-WebApp-AuthZ/5-1-Groups).
220+
- Learn how to use app groups. [Add authorization using security groups & groups claims to a Web app thats signs-in users with the Microsoft identity platform](../../5-WebApp-AuthZ/5-2-Groups).
221221

222222
## Learn more
223223

Microsoft.Identity.Web/Client/TokenCacheProviders/InMemory/MSALAppMemoryTokenCacheProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public MSALAppMemoryTokenCacheProvider(IMemoryCache cache,
6060
MSALMemoryTokenCacheOptions option,
6161
IOptionsMonitor<AzureADOptions> azureAdOptionsAccessor)
6262
{
63-
if (option != null)
63+
if (option == null)
6464
{
6565
this.CacheOptions = new MSALMemoryTokenCacheOptions();
6666
}
@@ -132,4 +132,4 @@ private void AppTokenCacheAfterAccessNotification(TokenCacheNotificationArgs arg
132132
}
133133
}
134134
}
135-
}
135+
}

0 commit comments

Comments
 (0)