Cannot get online users
I am trying to get an online user on that server when I use the s slash command. At that time, an error occurred. I have tried various devices but could not get it to work.
Code
Error
Code
Error
TypeError: Cannot read properties of null (reading 'status')const members = await interaction.guild.members.fetch({ withPresences: true });
const online = members.filter(member => member.presence.status !== "offline").size;npm list discord.js and node node -v version?Error [DisallowedIntents]: Privileged intent provided is not enabled or whitelisted.GuildMembers, GuildPresences, or MessageContent intents, you need to enable them in the developer portal:
Error [DisallowedIntents]: Privileged intent provided is not enabled or whitelisted.GuildMembersGuildPresencesMessageContentconst client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildPresences
],
partials: [Partials.Channel],
});