diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index 34b7385f1..075057678 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -2213,7 +2213,7 @@ namespace ArchiSteamFarm { } string loginKey = callback.LoginKey; - if (!string.IsNullOrEmpty(loginKey) && (BotConfig.PasswordFormat != CryptoHelper.ECryptoMethod.PlainText)) { + if (BotConfig.PasswordFormat != CryptoHelper.ECryptoMethod.PlainText) { loginKey = CryptoHelper.Encrypt(BotConfig.PasswordFormat, loginKey); }