Compare commits

..

No commits in common. "524596ad85fc0939150cbf5eaf7b66da1eca8d89" and "94adefa8e6d9430cb7237cc07f832f3dc47f0707" have entirely different histories.

View File

@ -1,4 +1,5 @@
using System.Text.RegularExpressions;
using System.Net;
using System.Text.RegularExpressions;
using API.MangaDownloadClients;
using HtmlAgilityPack;
@ -8,7 +9,7 @@ public class Mangaworld : MangaConnector
{
public Mangaworld() : base("Mangaworld", ["it"], ["www.mangaworld.ac"])
{
this.downloadClient = new ChromiumDownloadClient();
this.downloadClient = new HttpDownloadClient();
}
public override (Manga, List<Author>?, List<MangaTag>?, List<Link>?, List<MangaAltTitle>?)[] GetManga(string publicationTitle = "")