Skip to content

Commit

Permalink
Closes #2903
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed May 18, 2023
1 parent 824fb51 commit d81694c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ArchiSteamFarm/Steam/Bot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2484,6 +2484,11 @@ private async void OnConnected(SteamClient.ConnectedCallback callback) {

return;
}

// Steam artificially cuts passwords to first 64 characters
if (password.Length > 64) {
password = password[..64];
}
}

ArchiLogger.LogGenericInfo(Strings.BotLoggingIn);
Expand Down

0 comments on commit d81694c

Please sign in to comment.