WIP: #7/fix-disconnect #8

Draft
logan wants to merge 30 commits from #7/fix-disconnect into master
Showing only changes of commit 11dc4b5792 - Show all commits

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