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

@ -18,10 +18,10 @@ public class Mangasee : MangaConnector
public Mangasee(GlobalBase clone) : base(clone)
{
this.name = "Mangasee";
this.downloadClient = new DownloadClient(new Dictionary<byte, int>()
this.downloadClient = new DownloadClient(clone, new Dictionary<byte, int>()
{
{ 1, 60 }
}, clone);
});
Task d = new Task(DownloadBrowser);
d.Start();