Skip to content

Commit

Permalink
fix: typo in GuildMemberManager (#5616)
Browse files Browse the repository at this point in the history
  • Loading branch information
monbrey committed May 12, 2021
1 parent f831872 commit 73f4114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/managers/GuildMemberManager.js
Expand Up @@ -187,7 +187,7 @@ class GuildMemberManager extends BaseManager {
const d = await endpoint.patch({ data: _data, reason });

const clone = this.cache.get(id)?._clone();
clone?.patch(d);
clone?._patch(d);
return clone ?? this.add(d, false);
}

Expand Down

0 comments on commit 73f4114

Please sign in to comment.