We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ec9bc1 commit 1c81742Copy full SHA for 1c81742
ArchiSteamFarm/Steam/Cards/CardsFarmer.cs
@@ -1031,7 +1031,8 @@ private async Task<bool> FarmSolo(Game game) {
1031
IElement? nameNode = htmlDocument.QuerySelectorAll("span[class='profile_small_header_location']").LastOrDefault();
1032
1033
if (nameNode == null) {
1034
- Bot.ArchiLogger.LogNullError(nameNode);
+ // Normally we should log null error here, but here's why we don't: https://www.youtube.com/watch?v=nSKp2StlS6s&t=40s
1035
+ Bot.ArchiLogger.LogGenericWarning(Strings.FormatErrorIsInvalid(nameof(nameNode)));
1036
1037
return null;
1038
}
0 commit comments