From 238a2775f49f8e810dd9c78f085329fc1912a54c Mon Sep 17 00:00:00 2001 From: glax Date: Tue, 10 Oct 2023 22:45:11 +0200 Subject: [PATCH] Author formatting bato --- Tranga/MangaConnectors/Bato.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga/MangaConnectors/Bato.cs b/Tranga/MangaConnectors/Bato.cs index ae525fe..eb40673 100644 --- a/Tranga/MangaConnectors/Bato.cs +++ b/Tranga/MangaConnectors/Bato.cs @@ -90,7 +90,7 @@ public class Bato : MangaConnector string[] tags = genreNodes.Select(node => node.FirstChild.InnerText).ToArray(); List authorsNodes = infoNode.ChildNodes[1].ChildNodes[3].Descendants("a").ToList(); - List authors = authorsNodes.Select(node => node.InnerText).ToList(); + List authors = authorsNodes.Select(node => node.InnerText.Replace("amp;", "")).ToList(); HtmlNode? originalLanguageNode = document.DocumentNode.SelectSingleNode("//span[text()='Tr From']/.."); string originalLanguage = originalLanguageNode is not null ? originalLanguageNode.LastChild.InnerText : "";