From c0c534dafb54ebf9f95a5054f576ad99de29f232 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 29 Jun 2021 17:52:00 -0500 Subject: enable strictNullChecks and fix all related issues (#65) --- build/discord.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'build/discord.js') diff --git a/build/discord.js b/build/discord.js index a92521a..ba9f3eb 100644 --- a/build/discord.js +++ b/build/discord.js @@ -13,6 +13,10 @@ const httpsAgent = new https_1.Agent({ async function exchangeCode(redirectUri, code) { const API_ENDPOINT = 'https://discord.com/api/v6'; const CLIENT_SECRET = process.env.discord_client_secret; + if (!CLIENT_SECRET) { + console.error('discord_client_secret isn\'t in env, couldn\'t login with discord'); + return null; + } const data = { 'client_id': DISCORD_CLIENT_ID, 'client_secret': CLIENT_SECRET, -- cgit