We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f414eb1 commit c3797b8Copy full SHA for c3797b8
Emby.Plugins.JavScraper/Scrapers/JavDB.cs
@@ -237,7 +237,8 @@ List<string> GetSamples()
237
{
238
return doc.DocumentNode.SelectNodes("//div[@class='tile-images preview-images']/a")
239
?.Select(o => o.GetAttributeValue("href", null))
240
- .Where(o => string.IsNullOrWhiteSpace(o) == false).ToList();
+ .Where(o => string.IsNullOrWhiteSpace(o) == false)
241
+ .Where(o => !o.StartsWith('#')).ToList();
242
}
243
244
var m = new JavVideo()
0 commit comments