Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JavScraper committed Jun 20, 2021
1 parent f414eb1 commit c3797b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Emby.Plugins.JavScraper/Scrapers/JavDB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ List<string> GetSamples()
{
return doc.DocumentNode.SelectNodes("//div[@class='tile-images preview-images']/a")
?.Select(o => o.GetAttributeValue("href", null))
.Where(o => string.IsNullOrWhiteSpace(o) == false).ToList();
.Where(o => string.IsNullOrWhiteSpace(o) == false)
.Where(o => !o.StartsWith('#')).ToList();
}

var m = new JavVideo()
Expand Down

0 comments on commit c3797b8

Please sign in to comment.