Skip to content

Commit

Permalink
fix(GuildMember): more explicit partial check (#6760)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckohen committed Oct 7, 2021
1 parent 03c4b60 commit b1656bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/structures/GuildMember.js
Expand Up @@ -95,7 +95,7 @@ class GuildMember extends Base {
* @readonly
*/
get partial() {
return !this.joinedTimestamp;
return this.joinedTimestamp === null;
}

/**
Expand Down

0 comments on commit b1656bf

Please sign in to comment.