From e9c02a414028cada574e1712f1cc4aa66565fa93 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Mon, 8 Aug 2022 12:40:19 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/Core/Utilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Core/Utilities.cs b/ArchiSteamFarm/Core/Utilities.cs index 0859355b7..a131b675e 100644 --- a/ArchiSteamFarm/Core/Utilities.cs +++ b/ArchiSteamFarm/Core/Utilities.cs @@ -199,7 +199,7 @@ public static class Utilities { public static IEnumerable SelectNodes(this IDocument document, string xpath) where T : class, INode { ArgumentNullException.ThrowIfNull(document); - return document.SelectNodes(xpath).OfType(); + return document.Body.SelectNodes(xpath).OfType(); } [PublicAPI]