Skip to content

Commit

Permalink
fix(sources): webtoon chapter naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd committed Jan 9, 2024
1 parent e2ddc4d commit 326aed8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected override async Task<Result<ChapterList>> GetChapterList(string mangaId
string? episodeNumber = element.GetAttribute("data-episode-no");
double chapterNumber = double.Parse(episodeNumber);
IHtmlAnchorElement? anchor = element.FindDescendant<IHtmlAnchorElement>();
IHtmlSpanElement? titleElement = element.QuerySelector<IHtmlSpanElement>(".subj");
IHtmlSpanElement? titleElement = element.QuerySelector<IHtmlSpanElement>(".subj span");
IHtmlSpanElement? dateElement = element.QuerySelector<IHtmlSpanElement>(".date");

if (items.Any(x => x.Url == anchor.Href))
Expand Down

0 comments on commit 326aed8

Please sign in to comment.