From 369edc632f40b922eb5e3c76dfec92af5ba72c17 Mon Sep 17 00:00:00 2001 From: henceiusegentoo Date: Wed, 9 Aug 2023 10:16:34 +0200 Subject: [PATCH] Made discord-id automatically be a string by account creation --- cord/credential_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cord/credential_manager.py b/cord/credential_manager.py index 1eef509..e5e6a3a 100644 --- a/cord/credential_manager.py +++ b/cord/credential_manager.py @@ -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) } )