Skip to content

Commit

Permalink
fix ad tolowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
fmontaltmer committed Sep 3, 2024
1 parent 90d4f6f commit b48da45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/msal-common/src/cache/CacheManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ export abstract class CacheManager implements ICacheManager {
// Get keys of all accounts belonging to user
const matchingAccountKeys = this.getAccountKeys().filter(
(key: string) => {
return key.startsWith(accountEntity.homeAccountId);
return key.startsWith(accountEntity.homeAccountId.toLowerCase());
}
);

Expand Down

0 comments on commit b48da45

Please sign in to comment.