Skip to content

Commit a5daacb

Browse files
authored
Oops
1 parent 51f5d34 commit a5daacb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Core/Logic/Getters/FicbookGetter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public override async Task<Book> Get(Uri url) {
2626
var title = doc.GetTextBySelector("h1");
2727
var book = new Book(url) {
2828
Cover = await GetCover(doc, url),
29-
// Chapters = await FillChapters(doc, url, title),
29+
Chapters = await FillChapters(doc, url, title),
3030
Title = title,
3131
Author = GetAuthor(doc, url),
3232
Annotation = doc.QuerySelector("div[itemprop=description]")?.InnerHtml
@@ -107,4 +107,4 @@ private IEnumerable<UrlChapter> GetToc(HtmlDocument doc, Uri url, string title)
107107

108108
return SliceToc(result, c => c.Title);
109109
}
110-
}
110+
}

0 commit comments

Comments
 (0)