Merge pull request #374 from TheyCallMeTravis/weebcentral-fixsearch

Weebcentral - Fix Search Results Parse
This commit is contained in:
Glax 2025-03-18 18:12:23 +01:00 committed by GitHub
commit 5af8060d7b
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();