Skip to content

Commit

Permalink
Fix search for zh-hant
Browse files Browse the repository at this point in the history
  • Loading branch information
Zokhoi committed Aug 10, 2024
1 parent e0b58e8 commit 22df18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/zh/27k.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def search_novel(self, query):
{
"title": novel.select_one("h3 a:not([imgbox])").text.title(),
"url": self.absolute_url(novel.select_one("h3 a")["href"]),
"info": "Latest: %s" % novel.select_one("div.zxzj p").text.replace("最近章节", ""),
"info": "Latest: %s" % novel.select_one("div.zxzj p").text.replace("最近章节", "").replace("最近章節", ""),
}
)

Expand Down

0 comments on commit 22df18f

Please sign in to comment.