Added error handeling

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

View file

@ -46,6 +46,11 @@ class playCommand extends Command {
voiceChannel.leave(); voiceChannel.leave();
return message.channel.send('Music ended, i left the channel'); 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?');
}); });
} }
} }