fix depend in bot router

This commit is contained in:
Logan Cusano
2025-07-14 21:05:45 -04:00
parent e7ff28da6e
commit a634ea2260

View File

@@ -50,7 +50,7 @@ def create_bot_router(bot_manager: DiscordBotManager):
async def get_status():
status = {
"bot_running": bot_manager.bot is not None and not bot_manager.bot.is_closed(),
"connected_guilds": list(bot_manager.voice_clients.keys()),
"connected_guilds": list(bot_manager.voice_connections.keys()),
"active_token": bot_manager.token
}
return status