From 3012c3d5ae1caff94e36bb73c9f2d4cdfa1a4e0e Mon Sep 17 00:00:00 2001 From: profitroll Date: Wed, 1 Mar 2023 19:16:34 +0100 Subject: [PATCH] Fixed object type and db lookup --- modules/commands/warnings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/commands/warnings.py b/modules/commands/warnings.py index a25e734..50524c1 100644 --- a/modules/commands/warnings.py +++ b/modules/commands/warnings.py @@ -27,12 +27,12 @@ async def cmd_warnings(app: Client, msg: Message): if len(list_of_users) != 0: target = list_of_users[0].user target_name = target.first_name - target_id = str(target.id) + target_id = target.id else: await msg.reply_text(locale("no_user_warnings", "message", locale=msg.from_user).format(msg.command[1])) return - warns = len(list(col_warnings.find({"user": target_id}))) + warns = col_warnings.count_documents({"user": target_id}) if warns == 0: await msg.reply_text(locale("no_warnings", "message", locale=msg.from_user).format(target_name, target_id), quote=should_quote(msg))