Corrected order of constructor (GlobalBase clone)

This commit is contained in:
2023-08-27 01:15:02 +02:00
parent 181942153b
commit 6e1a0ab06c
5 changed files with 9 additions and 9 deletions

View File

@ -13,10 +13,10 @@ public class MangaKatana : MangaConnector
public MangaKatana(GlobalBase clone) : base(clone)
{
this.name = "MangaKatana";
this.downloadClient = new DownloadClient(new Dictionary<byte, int>()
this.downloadClient = new DownloadClient(clone, new Dictionary<byte, int>()
{
{1, 60}
}, clone);
});
}
public override Publication[] GetPublications(string publicationTitle = "")