mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
test for membership should be 'not in'
This commit is contained in:
parent
8ffb9121c4
commit
8dd0d55b1f
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ async def zonafilm(_, msg):
|
|||
msgs += f"<b>{c}. <a href='{i['link']}'>{i['judul']}</a></b>\n<b>Genre:</b> <code>{i['genre']}</code>\n"
|
||||
msgs += (
|
||||
f"<b>Extract:</b> <code>/{msg.command[0]}_scrap {i['link']}</code>\n\n"
|
||||
if not "/tv/" in i["link"]
|
||||
if "/tv/" not in i["link"]
|
||||
else "\n"
|
||||
)
|
||||
if len(head.encode("utf-8") + msgs.encode("utf-8")) >= 4000:
|
||||
|
|
|
|||
Loading…
Reference in a new issue