diff --git a/src/structures/User.js b/src/structures/User.js index 1fb23d4cf..673663234 100644 --- a/src/structures/User.js +++ b/src/structures/User.js @@ -185,7 +185,7 @@ class User extends Base { * @readonly */ get dmChannel() { - return this.client.channels.filter(c => c.type === 'dm').find(c => c.recipient.id === this.id) || null; + return this.client.channels.find(c => c.type === 'dm' && c.recipient.id === this.id) || null; } /**