Made discord-id automatically be a string by account creation

This commit is contained in:
henceiusegentoo 2023-08-09 10:16:34 +02:00
parent c9ea838d5d
commit 369edc632f

View file

@ -40,7 +40,7 @@ Please report this issue to the staff!""", ephemeral=True)
'Authorization': os.getenv('CORE_API_KEY')
},
json={
'discord_id': interaction.user.id
'discord_id': str(interaction.user.id)
}
)