Added error handeling

merge-requests/4/head
loicbersier 5 years ago
parent 150b08fe4b
commit de17681b28

@ -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;

Loading…
Cancel
Save