|
|
|
@ -300,7 +300,11 @@ module.exports.Manga = class Manga
|
|
|
|
|
try {
|
|
|
|
|
const Scanlator = new this.Engine();
|
|
|
|
|
const Manga = await Scanlator.GetManga(this.link, this.title);
|
|
|
|
|
const List = await Scanlator.ChapterList(this.link, this.title);
|
|
|
|
|
let List = await Scanlator.ChapterList(this.link, this.title);
|
|
|
|
|
List = List.sort((a,b)=>
|
|
|
|
|
{
|
|
|
|
|
return a.num-b.num;
|
|
|
|
|
})
|
|
|
|
|
const Status = Manga.Status?Manga.Status:Manga.status;
|
|
|
|
|
//TODO: Defaults for missing info from the modules;
|
|
|
|
|
return {...Manga, Status, link:this.link, scanlator:this.scanlator, List, title:this.title}
|
|
|
|
|