mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Fix split text in imdb plugins
Signed-off-by: yasirarism <github@yasir.eu.org>
This commit is contained in:
parent
c9d7722be2
commit
858bef9dbe
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ async def imdb_choose(_, ctx: Message):
|
||||||
return await ctx.reply_msg(
|
return await ctx.reply_msg(
|
||||||
"Cannot identify user, please use in private chat.", del_in=7
|
"Cannot identify user, please use in private chat.", del_in=7
|
||||||
)
|
)
|
||||||
kuery = ctx.text.split(" ", 1)[1]
|
kuery = ctx.text.split()[1]
|
||||||
is_imdb, lang = await is_imdbset(ctx.from_user.id)
|
is_imdb, lang = await is_imdbset(ctx.from_user.id)
|
||||||
if is_imdb:
|
if is_imdb:
|
||||||
if lang == "eng":
|
if lang == "eng":
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue