Update status list

This commit is contained in:
Logan Cusano
2025-08-01 23:34:10 -04:00
parent b2b15d3b7c
commit 11dc4b5792

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_connections.keys()),
"connected_guilds": list(bot_manager.voice_cog.voice_states.keys()),
"active_token": bot_manager.token
}
return status