diff options
author | mat <github@matdoes.dev> | 2022-03-18 19:37:10 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-03-18 19:37:10 -0500 |
commit | cdb32f8663b687067b2ab835edbca420100972b2 (patch) | |
tree | e79817e93a0f9a02c9b855b68b73213de1c79bc1 | |
parent | 379531c5182fef14d2c88e08194734d85c9367a8 (diff) | |
download | skyblock-stats-cdb32f8663b687067b2ab835edbca420100972b2.tar.gz skyblock-stats-cdb32f8663b687067b2ab835edbca420100972b2.tar.bz2 skyblock-stats-cdb32f8663b687067b2ab835edbca420100972b2.zip |
Fix wrong client id
-rw-r--r-- | src/routes/login.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/login.ts b/src/routes/login.ts index 3e247f2..4ce0dce 100644 --- a/src/routes/login.ts +++ b/src/routes/login.ts @@ -5,7 +5,7 @@ import env from '../env' export const get: RequestHandler = async ({ request, platform }) => { const host = request.headers.get('host') - const clientId = env(platform).SKYBLOCK_STATS_API_KEY + const clientId = env(platform).DISCORD_CLIENT_ID if (!clientId) return { |