From 7aff87636b2e98b4c3fa8a23b4921a82c935d34f Mon Sep 17 00:00:00 2001 From: MadCat9958 Date: Sat, 1 Jul 2023 13:49:06 +0300 Subject: [PATCH] one more fix --- boticordpy/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boticordpy/client.py b/boticordpy/client.py index aab9970..8cf5726 100644 --- a/boticordpy/client.py +++ b/boticordpy/client.py @@ -77,7 +77,7 @@ class BoticordClient: _logger.info("Posting bot stats") response = await self.http.post_bot_stats( - bot_id, {"servers": servers, "shards": shards, "users": users} + bot_id, {"guilds": servers, "shards": shards, "members": users} ) return boticord_types.ResourceBot.from_dict(response)