Chapters now have IdOnConnector-Site

This commit is contained in:
2025-05-18 16:30:03 +02:00
parent 8ecbdb91b2
commit bd60fda05a
6 changed files with 765 additions and 5 deletions

View File

@ -242,6 +242,6 @@ public class ComickIo : MangaConnector
throw new Exception("chapterNum is null");
string url = $"https://comick.io{canonical}";
return new Chapter(parentManga, url, chapterNum, volumeNum, title);
return new Chapter(parentManga, url, chapterNum, volumeNum, hid, title);
}
}

View File

@ -330,6 +330,6 @@ public class MangaDex : MangaConnector
volume = int.Parse(volumeStr);
string url = $"https://mangadex.org/chapter/{id}";
return new Chapter(parentManga, url, chapter, volume, title);
return new Chapter(parentManga, url, chapter, volume, id, title);
}
}