Skip to content

Commit

Permalink
fixes selector
Browse files Browse the repository at this point in the history
  • Loading branch information
CryZFix authored and dipu-bd committed Oct 14, 2024
1 parent 2060458 commit 1eadb1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/en/t/teanovel.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def read_novel_info(self):
if isinstance(img_tag, Tag):
self.novel_cover = self.absolute_url(img_tag["src"])

chapters = self.get_soup(self.novel_url + "/chapter-list").select("a.border-b[href*='became']")
chapters = self.get_soup(self.novel_url + "/chapter-list").select("a.border-b")
for chapter in chapters:
chapter_id = len(self.chapters) + 1
self.chapters.append(
Expand Down

0 comments on commit 1eadb1e

Please sign in to comment.