fix(GuildMember): more explicit partial check (#6760)

This commit is contained in:
ckohen
2021-10-07 09:28:32 -07:00
committed by GitHub
parent 03c4b60384
commit b1656bfb4f

View File

@@ -95,7 +95,7 @@ class GuildMember extends Base {
* @readonly
*/
get partial() {
return !this.joinedTimestamp;
return this.joinedTimestamp === null;
}
/**