mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Fix klikxxi if search not found
Signed-off-by: Yasir Aris M <git@yasirdev.my.id>
This commit is contained in:
parent
16e4f58f4f
commit
2372ba3129
1 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ __HELP__ = """
|
||||||
/movieku [query <optional>] - Scrape website data from Movieku.cc
|
/movieku [query <optional>] - Scrape website data from Movieku.cc
|
||||||
/kusonime [query <optional>] - Scrape website data from Kusonime
|
/kusonime [query <optional>] - Scrape website data from Kusonime
|
||||||
/lendrive [query <optional>] - Scrape website data from Lendrive
|
/lendrive [query <optional>] - Scrape website data from Lendrive
|
||||||
/gomov [query <optional>] - Scrape website data from GoMov.
|
/klikxxi [query <optional>] - Scrape website data from Klikxxi aka GoMov.
|
||||||
/samehadaku [query <optional>] - Scrape website data from Samehadaku.
|
/samehadaku [query <optional>] - Scrape website data from Samehadaku.
|
||||||
/nodrakor [query <optional>] - Scrape website data from NoDrakor
|
/nodrakor [query <optional>] - Scrape website data from NoDrakor
|
||||||
"""
|
"""
|
||||||
|
|
@ -476,7 +476,7 @@ async def getDataGomov(msg, kueri, CurrentPage, user, strings):
|
||||||
return None, 0, None
|
return None, 0, None
|
||||||
text = BeautifulSoup(gomovv, "lxml")
|
text = BeautifulSoup(gomovv, "lxml")
|
||||||
entry = text.find_all(class_="entry-header")
|
entry = text.find_all(class_="entry-header")
|
||||||
if entry[0].text.strip() == "Tidak Ditemukan":
|
if entry[0].text.strip() == "Nothing Found":
|
||||||
if not kueri:
|
if not kueri:
|
||||||
await msg.edit_msg(strings("no_result"), del_in=5)
|
await msg.edit_msg(strings("no_result"), del_in=5)
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue