mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Closes #2903
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user