Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix uukanshu possible failure on synopsis #2279

Merged
merged 1 commit into from
Feb 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion sources/zh/uukanshu.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ def read_novel_info(self) -> None:

self.novel_title = meta.select_one("h1 > a").text
self.novel_author = meta.select_one("h2 > a").text
self.novel_synopsis = meta.select_one("h3 > p").text
synopsis = meta.select_one("h3")
# in some cases the synopsis is only h3 without self-promo, but otherwise actual content is in paragraph
if synopsis:
self.novel_synopsis = synopsis.text
if synopsis.select_one("p"):
self.novel_synopsis = synopsis.select_one("p").text

chapters = soup.select_one("ul#chapterList")
for chapter in list(chapters.children)[::-1]: # reverse order as it's newest to oldest
Expand Down
Loading