Added error handeling

This commit is contained in:
loicbersier 2019-11-09 11:26:10 +01:00
parent 150b08fe4b
commit de17681b28

View file

@ -46,8 +46,13 @@ class playCommand extends Command {
voiceChannel.leave();
return message.channel.send('Music ended, i left the channel');
});
});
})
.catch(err => {
console.error(err);
voiceChannel.leave();
return message.channel.send('An error has occured! is the link you sent valid?');
});
}
}
module.exports = playCommand;
module.exports = playCommand;