Skip to content

Commit c3797b8

Browse files
committed
fix
1 parent f414eb1 commit c3797b8

File tree

1 file changed

+2
-1
lines changed
  • Emby.Plugins.JavScraper/Scrapers

1 file changed

+2
-1
lines changed

Emby.Plugins.JavScraper/Scrapers/JavDB.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ List<string> GetSamples()
237237
{
238238
return doc.DocumentNode.SelectNodes("//div[@class='tile-images preview-images']/a")
239239
?.Select(o => o.GetAttributeValue("href", null))
240-
.Where(o => string.IsNullOrWhiteSpace(o) == false).ToList();
240+
.Where(o => string.IsNullOrWhiteSpace(o) == false)
241+
.Where(o => !o.StartsWith('#')).ToList();
241242
}
242243

243244
var m = new JavVideo()

0 commit comments

Comments
 (0)