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