mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-11 13:19:48 +02:00
MangaPark fix Tags with only '/'
This commit is contained in:
@@ -116,7 +116,7 @@ public class MangaPark : MangaConnector
|
||||
ICollection<Link> links = [];
|
||||
|
||||
ICollection<AltTitle> altTitles = document.GetNodeWith("tz_2")?
|
||||
.ChildNodes.Where(n => n.InnerText.Length > 1)
|
||||
.ChildNodes.Where(n => n.InnerText.Trim().Length > 1)
|
||||
.Select(n => n.InnerText)
|
||||
.Select(t => new AltTitle(string.Empty, t))
|
||||
.ToList()??[];
|
||||
|
Reference in New Issue
Block a user