Merge pull request #374 from TheyCallMeTravis/weebcentral-fixsearch

Weebcentral - Fix Search Results Parse
This commit is contained in:
2025-03-18 18:12:23 +01:00
committed by GitHub

View File

@ -44,7 +44,7 @@ public class Weebcentral : MangaConnector
if (document.DocumentNode.SelectNodes("//article") == null) if (document.DocumentNode.SelectNodes("//article") == null)
return []; 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(); .Select(elem => elem.GetAttributeValue("href", "")).ToList();
HashSet<Manga> ret = new(); HashSet<Manga> ret = new();