Skip to content

Commit

Permalink
fix null reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-b-iodigital committed May 21, 2024
1 parent eb7704d commit 4808674
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ private List<string> ChunkGenericHtmlPage(HtmlDocument htmlDocument, string xpat

List<Node> textNodes = new List<Node>();

if (textNodes != null)
if (nodes != null)
{
foreach (var node in nodes)
{
Expand Down

0 comments on commit 4808674

Please sign in to comment.