When I try to reply to a user with a bot in DM's, I get this error: Discord.Js - Uncaught DiscordAPIError: Cannot send messages to this user
What's the problem?
Code:
client.on('message', message=>{
if(!message.author.send('$$')) return
if(message.author.send('$$')){
message.channel.send('Hi! Please describe your message to get help with it.').catch(error => {
message.channel.send('I was unable to send a message.')
})
}