Skip to content

Commit

Permalink
fix(sources): trim mangastream chapter name
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd committed Jan 10, 2024
1 parent 326aed8 commit bc4fac5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ protected override async Task<Result<ChapterList>> GetChapterList(string mangaId

items.Add(new ChapterListItem(
ConstructId(anchorElement.Href, url, chapterNumber.ToString()),
titleElement.TextContent,
titleElement.TextContent.Trim().Replace("\n",string.Empty).Replace("\t", string.Empty),
chapterNumber,
DateTime.Parse(dateElement.TextContent).Date,
anchorElement.Href));
Expand Down

0 comments on commit bc4fac5

Please sign in to comment.