Add field "url" to Chapter to know where to download.

This commit is contained in:
glax
2023-05-18 16:21:21 +02:00
parent 317d1435f3
commit d13a7c3e49
2 changed files with 6 additions and 2 deletions

View File

@ -123,6 +123,8 @@ public class MangaDex : Connector
foreach (JsonObject chapter in chaptersInResult)
{
JsonObject attributes = chapter!["attributes"]!.AsObject();
string chapterId = attributes["id"]!.GetValue<string>();
string? title = attributes.ContainsKey("title") && attributes["title"] is not null
? attributes["title"]!.GetValue<string>()
: null;
@ -135,7 +137,7 @@ public class MangaDex : Connector
? attributes["chapter"]!.GetValue<string>()
: null;
chapters.Add(new Chapter(publication, title, volume, chapterNum));
chapters.Add(new Chapter(publication, title, volume, chapterNum, chapterId));
}
}
return chapters.OrderBy(chapter => chapter.chapterNumber).ToArray();