DMs not receiving

Can someone explain to me why this code doesn't let the bot receive DM messages? It can receive all other messages in guilds, but not DMs.
const { Client, GatewayIntentBits } = require('discord.js');

const client = new Client({
    intents: [
        GatewayIntentBits.Guilds,
        GatewayIntentBits.GuildMessages,
        GatewayIntentBits.GuildMessageReactions,
        GatewayIntentBits.GuildMessageTyping,
        GatewayIntentBits.DirectMessages,
        GatewayIntentBits.DirectMessageReactions,
        GatewayIntentBits.DirectMessageTyping,
    ],
    partials: [
        'CHANNEL', // Required to receive DMs
    ]
});

client.on('messageCreate', (msg) => {
    console.log(msg)
})
Was this page helpful?