From 401d0861912941cc5dca73bd94e993fa240fb372 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Mon, 24 Mar 2025 10:29:40 +0200 Subject: [PATCH] Make stored credentials dictionaries case insensitive Fixes #539 --- DepotDownloader/AccountSettingsStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DepotDownloader/AccountSettingsStore.cs b/DepotDownloader/AccountSettingsStore.cs index 7e1594be..7f2bbfef 100644 --- a/DepotDownloader/AccountSettingsStore.cs +++ b/DepotDownloader/AccountSettingsStore.cs @@ -32,8 +32,8 @@ namespace DepotDownloader AccountSettingsStore() { ContentServerPenalty = new ConcurrentDictionary(); - LoginTokens = []; - GuardData = []; + LoginTokens = new(StringComparer.OrdinalIgnoreCase); + GuardData = new(StringComparer.OrdinalIgnoreCase); } static bool Loaded