This commit is contained in:
JustArchi
2018-03-16 14:13:34 +01:00
parent 2716433f05
commit 251cd74b61
3 changed files with 5 additions and 5 deletions

View File

@@ -1723,7 +1723,7 @@ namespace ArchiSteamFarm {
Regex regex = new Regex(@"[^\u0000-\u007F]+", RegexOptions.CultureInvariant | RegexOptions.IgnoreCase);
string username = regex.Replace(BotConfig.SteamLogin, "").Trim();
string username = regex.Replace(BotConfig.SteamLogin, "").Replace(" ", "");
string password = BotConfig.SteamPassword;
if (!string.IsNullOrEmpty(password)) {