Exactly 64 is fine

pull/610/head
Pavel Djundik 6 months ago
parent 2682d44684
commit 2c07abb015

@ -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.");
}

Loading…
Cancel
Save