mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
Misc
This commit is contained in:
parent
270a71e83c
commit
e9c02a4140
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ public static class Utilities {
|
|||
public static IEnumerable<T> SelectNodes<T>(this IDocument document, string xpath) where T : class, INode {
|
||||
ArgumentNullException.ThrowIfNull(document);
|
||||
|
||||
return document.SelectNodes(xpath).OfType<T>();
|
||||
return document.Body.SelectNodes(xpath).OfType<T>();
|
||||
}
|
||||
|
||||
[PublicAPI]
|
||||
|
|
Loading…
Reference in a new issue