diff --git a/packages/discord.js/src/structures/DMChannel.js b/packages/discord.js/src/structures/DMChannel.js index 0ade9aa0491f..2c917c454fde 100644 --- a/packages/discord.js/src/structures/DMChannel.js +++ b/packages/discord.js/src/structures/DMChannel.js @@ -38,7 +38,7 @@ class DMChannel extends BaseChannel { */ this.recipientId = recipient.id; - if ('username' in recipient || this.client.options.partials.includes(Partials.Users)) { + if ('username' in recipient || this.client.options.partials.includes(Partials.User)) { this.client.users._add(recipient); } }