Skip to content

Commit

Permalink
Merge pull request #245 from Aprite/fix-argumentnullexception-230421
Browse files Browse the repository at this point in the history
fix:System.ArgumentNullException:
  • Loading branch information
zlzforever committed Apr 21, 2023
2 parents 1e07808 + c57ca80 commit 7f678d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DotnetSpider/DataFlow/Parser/DataParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public virtual void AddFollowRequestQuerier(ISelector selector)
{
_followRequestQueriers.Add(context =>
{
var requests = context.Selectable.SelectList(selector)
var requests = context.Selectable.SelectList(selector)?
.Where(x => x != null)
.SelectMany(x => x.Links())
.Select(x =>
Expand Down

0 comments on commit 7f678d5

Please sign in to comment.