I must stop forgetting about bot identifiers

This commit is contained in:
JustArchi
2016-06-20 12:53:17 +02:00
parent f36681ea18
commit ad63432645

View File

@@ -384,11 +384,11 @@ namespace ArchiSteamFarm {
string progress = htmlNode.InnerText; string progress = htmlNode.InnerText;
if (string.IsNullOrEmpty(progress)) { if (string.IsNullOrEmpty(progress)) {
Logging.LogNullError(nameof(progress)); Logging.LogNullError(nameof(progress), Bot.BotName);
return null; return null;
} }
Logging.LogGenericInfo("Status for " + appID + ": " + progress); Logging.LogGenericInfo("Status for " + appID + ": " + progress, Bot.BotName);
return progress.Equals("No card drops remaining"); return progress.Equals("No card drops remaining");
} }