We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 569aad2 commit 461ceddCopy full SHA for 461cedd
1 file changed
lib/msal-common/src/cache/CacheManager.ts
@@ -390,7 +390,10 @@ export abstract class CacheManager implements ICacheManager {
390
return;
391
}
392
393
- // homeAccountId can undefined, and we want to filter out cached items that have a homeAccountId of ""
+ /*
394
+ * homeAccountId can undefined, and we want to filter out cached items that have a homeAccountId of ""
395
+ * because we don't want a client_credential request to return a cached token that has a homeAccountId
396
+ */
397
if ((typeof homeAccountId === "string") && !this.matchHomeAccountId(entity, homeAccountId)) {
398
399
0 commit comments