This commit is contained in:
Archi
2023-05-18 11:06:44 +02:00
parent 824fb510a3
commit d81694c7f0

View File

@@ -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);