Weebcentral - Fix Search Results Parse

This commit is contained in:
TheyCallMeTravis 2025-03-17 14:29:09 -05:00 committed by GitHub
parent 67fd9d284b
commit 3324ed6e4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,7 @@ public class Weebcentral : MangaConnector
if (document.DocumentNode.SelectNodes("//article") == null)
return [];
List<string> urls = document.DocumentNode.SelectNodes("/html/body/article/a[@class='link link-hover']")
List<string> urls = document.DocumentNode.SelectNodes("/html/body/article/a[@class='link link-hover tooltip tooltip-bottom']")
.Select(elem => elem.GetAttributeValue("href", "")).ToList();
HashSet<Manga> ret = new();