From 2c07abb0155b9ac33626f1f0e8bfa075cf3df46d Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Wed, 12 Mar 2025 11:35:09 +0200 Subject: [PATCH] Exactly 64 is fine --- DepotDownloader/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/Program.cs b/DepotDownloader/Program.cs index 81c0b824..d11feace 100644 --- a/DepotDownloader/Program.cs +++ b/DepotDownloader/Program.cs @@ -360,7 +360,7 @@ namespace DepotDownloader { const int MAX_PASSWORD_SIZE = 64; - if (password.Length >= MAX_PASSWORD_SIZE) + if (password.Length > MAX_PASSWORD_SIZE) { Console.Error.WriteLine($"Warning: Password is longer than {MAX_PASSWORD_SIZE} characters, which is not supported by Steam."); }