From 22df18fd252e85af33efe25c5421893f7a03add3 Mon Sep 17 00:00:00 2001 From: Zokhoi <20432565+Zokhoi@users.noreply.github.com> Date: Sun, 11 Aug 2024 03:24:26 +0800 Subject: [PATCH] Fix search for zh-hant --- sources/zh/27k.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/zh/27k.py b/sources/zh/27k.py index 234aedd4c..2d4b520dd 100644 --- a/sources/zh/27k.py +++ b/sources/zh/27k.py @@ -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("最近章節", ""), } )