diff --git a/app/routers/bot.py b/app/routers/bot.py index 5ac3764..7beb98f 100644 --- a/app/routers/bot.py +++ b/app/routers/bot.py @@ -95,7 +95,7 @@ async def create_discord_token(): temp_discord_id = data.get("discord_id") temp_token = data.get("token") temp_active = bool(data.get("active")) - temp_guilds = data.get("guilds") + temp_guilds = data.get("guild_ids") # Create the discord ID object d_id = DiscordId(None, temp_discord_id, temp_name, temp_token, temp_active, temp_guilds)