mirror of
https://github.com/boticord/boticordpy.git
synced 2024-11-11 19:07:29 +03:00
fix
This commit is contained in:
parent
b99954a597
commit
ea4f7e33e8
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class HttpClient:
|
|||
|
||||
def post_bot_stats(self, bot_id: typing.Union[str, int], stats: dict):
|
||||
"""Post bot's stats"""
|
||||
return self.make_request("POST", f"bots/{bot_id}", json=stats)
|
||||
return self.make_request("POST", f"bots/{bot_id}/stats", json=stats)
|
||||
|
||||
def get_server_info(self, server_id: int):
|
||||
"""Get information about specified server"""
|
||||
|
|
Loading…
Reference in a new issue