Skip to content

Commit

Permalink
WIP: update blogtruyen
Browse files Browse the repository at this point in the history
  • Loading branch information
haipham22 committed Sep 5, 2023
1 parent 25ecd0c commit 6ac49f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BlogTruyen/BlogTruyenParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class BlogTruyenParser extends DefaultParser {
return {
id: $doc('a', $el).attr('href'),
chapNum: Number(chapNum),
name: $doc('a', $el)?.text()?.trim(),
name: this.decodeString($doc('.entry-title a', $el)?.text()?.trim()),
time: this.convertTime($doc('.publishedDate', $el).text(), 'DD/MM/YYYY hh:mm'),
sortingIndex: index,
} as Chapter
Expand Down

0 comments on commit 6ac49f4

Please sign in to comment.