diff --git a/ArchiSteamFarm/Steam/Bot.cs b/ArchiSteamFarm/Steam/Bot.cs index 3cbeb37a4..fe91b1b94 100644 --- a/ArchiSteamFarm/Steam/Bot.cs +++ b/ArchiSteamFarm/Steam/Bot.cs @@ -2484,6 +2484,11 @@ public sealed class Bot : IAsyncDisposable, IDisposable { return; } + + // Steam artificially cuts passwords to first 64 characters + if (password.Length > 64) { + password = password[..64]; + } } ArchiLogger.LogGenericInfo(Strings.BotLoggingIn);