From cfd0b08ece8951d126c95ecec420b35fade22f62 Mon Sep 17 00:00:00 2001 From: Hamza Ali Date: Tue, 12 Oct 2021 22:01:08 +0700 Subject: [PATCH] refactor: remove guilds.join intent --- src/config/Constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Constants.ts b/src/config/Constants.ts index c467a6c..e6dde94 100644 --- a/src/config/Constants.ts +++ b/src/config/Constants.ts @@ -1,6 +1,6 @@ export const PORT = process.env.PORT || 4000; -export const OAUTH_SCOPE = "identify guilds.join"; +export const OAUTH_SCOPE = "identify"; export const API_URL = "https://discord.com/api/v6";