From fe3d67eff56dca46ddec7f2b791aabbf148c7c60 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Wed, 16 Aug 2023 21:23:03 +0200 Subject: [PATCH] Fixed client data #337 #1.1.0.rc3 --- kdb-bot/src/bot_graphql/queries/client_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdb-bot/src/bot_graphql/queries/client_query.py b/kdb-bot/src/bot_graphql/queries/client_query.py index e5cd4c68..6e69a369 100644 --- a/kdb-bot/src/bot_graphql/queries/client_query.py +++ b/kdb-bot/src/bot_graphql/queries/client_query.py @@ -40,7 +40,7 @@ class ClientQuery(DataQueryWithHistoryABC): @staticmethod def resolve_received_message_count(client: Client, *_): - return client.received_command_count + return client.received_message_count @staticmethod def resolve_deleted_message_count(client: Client, *_):