Fix param name

This commit is contained in:
Logan Cusano
2025-05-26 00:57:58 -04:00
parent ea361f51a6
commit 243ae6d15a

View File

@@ -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)