Skip to content

Commit 401d086

Browse files
committed
Make stored credentials dictionaries case insensitive
Fixes #539
1 parent 8d8c6fc commit 401d086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DepotDownloader/AccountSettingsStore.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class AccountSettingsStore
3232
AccountSettingsStore()
3333
{
3434
ContentServerPenalty = new ConcurrentDictionary<string, int>();
35-
LoginTokens = [];
36-
GuardData = [];
35+
LoginTokens = new(StringComparer.OrdinalIgnoreCase);
36+
GuardData = new(StringComparer.OrdinalIgnoreCase);
3737
}
3838

3939
static bool Loaded

0 commit comments

Comments
 (0)