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
const members = await interaction.guild.members.fetch({ withPresences: true });
const online = members.filter(member => member.presence.status !== "offline").size;


Error
TypeError: Cannot read properties of null (reading 'status')
Was this page helpful?