This commit is contained in:
Logan Cusano
2025-05-24 18:27:16 -04:00
parent 7f61bf5239
commit 161af54388

View File

@@ -67,7 +67,7 @@ class RadioAPIClient(BaseAPI):
"""
url = "/bots/request_token"
print(f"Fetching a token from {self.base_url}{url}")
return await self._request("POST", url, json={"client_id":app_conf.client_id})
return await self._request("POST", url, json={"client_id":app_config.client_id})
async def send_command(self, client_id: str, command_name: str, args: list = None):
"""