Remora / Remora.Discord

A data-oriented C# Discord library, focused on high-performance concurrency and robust design.
GNU Lesser General Public License v3.0
246 stars 44 forks source link

Do not use IsDefined when updating cached nullable properties in GuildMember #323

Closed Octol1ttle closed 7 months ago

Octol1ttle commented 7 months ago

Fixes an issue that would cause some properties to not be null after updating even if the new property was null. IsDefined checks if 1) the value exists and 2) the value is not null. The second check causes problems, that's why I replaced it with TryGet which only cares about a value being present, regardless of whether it's null or not