From 6696fed9d7bc65b9c51b839d045047f57a5454b6 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 5 Mar 2026 23:56:49 +0100 Subject: [PATCH] fix: remove privileged intents not needed for radio plugin Only request Guilds + GuildVoiceStates. GuildMembers, GuildPresences and MessageContent are privileged and require manual portal activation. Co-Authored-By: Claude Opus 4.6 --- server/src/core/discord.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/server/src/core/discord.ts b/server/src/core/discord.ts index fda1b78..9078fa5 100644 --- a/server/src/core/discord.ts +++ b/server/src/core/discord.ts @@ -4,10 +4,6 @@ const client = new Client({ intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildVoiceStates, - GatewayIntentBits.GuildMembers, - GatewayIntentBits.GuildMessages, - GatewayIntentBits.GuildPresences, - GatewayIntentBits.MessageContent, ], });