Plugin not getting guild membersSolved

I just debuged it. And it seems that this call returning an empty value:

        private GuildMember GetGuildMember(string discordId)
            => Client.DiscordServer.members.Find(member => member.user.id == discordId);
 
 
When he tries to get this:
 
var guildmember = GetGuildMember(discordId);

The discordID is filled with the correct value of the corresponding Member (checked with DiscordID from real Discord). Aswell the User if Member of course of the Discord.
 
The Discord Bot has Admin Permission and it worked in the past.

Any suggestions?

Additional information:

It seems that Client.DiscordServer.member is empty in any case where to problem seems to be located. Because of that every other check fails aswell...

Merged post

Ok solved it. The Bot hasnt been enabled for the "SERVER MEMBERS INTENT" Option on the Discord Bot configuration itself. Now it works again.
Locked automatically