We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a04ef commit 07fc737Copy full SHA for 07fc737
src/TumblThree/TumblThree.Applications/Crawler/TumblrHiddenCrawler.cs
@@ -476,15 +476,15 @@ private async Task DownloadPage(List<Post> posts)
476
}
477
478
479
- private List<Content> GetContents(Post post)
+ private static List<Content> GetContents(Post post)
480
{
481
if (post.Content?.Count > 0)
482
483
return post.Content;
484
485
else if (post.Trail?.Count > 0)
486
487
- return post.Trail.Where(.Trail[0].Content;
+ return post.Trail.SelectMany(t => t.Content).ToList();
488
489
return new List<Content>();
490
0 commit comments