Required changes

This commit is contained in:
Andy Maesen 2023-06-23 22:14:27 +02:00
parent 4275703941
commit d4eb72cd99
2 changed files with 2 additions and 5 deletions

View File

@ -74,10 +74,7 @@ public class MangaKatana : Connector
string[] authors = Array.Empty<string>();
string originalLanguage = "";
//HtmlNode infoNode = document.DocumentNode.Descendants("div").First(d => d.HasClass("story-info-right"));
HtmlNode infoNode = document.DocumentNode.SelectSingleNode("//*[@id='single_book']");
//string sortName = infoNode.Descendants("h1").First().InnerText;
string sortName = infoNode.Descendants("h1").First(n => n.HasClass("heading")).InnerText;
HtmlNode infoTable = infoNode.SelectSingleNode("//*[@id='single_book']/div[2]/div/ul");
@ -165,7 +162,7 @@ public class MangaKatana : Connector
.GetAttributeValue("href", "");
ret.Add(new Chapter(chapterName, volumeNumber, chapterNumber, url));
}
ret.Reverse();
return ret;
}

View File

@ -28,7 +28,7 @@ public class TaskManager
new MangaDex(settings.downloadLocation, settings.coverImageCache, logger),
new Manganato(settings.downloadLocation, settings.coverImageCache, logger),
new Mangasee(settings.downloadLocation, settings.coverImageCache, logger),
new MangaKatana(settings.downloadLocation, settings.coverImageCache, logger)
new MangaKatana(settings.downloadLocation, settings.coverImageCache, logger)
};
this.settings = settings;