1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-19 22:11:55 +00:00

forgot the console.logs :)

This commit is contained in:
MatteZ02 2020-02-11 21:35:45 +02:00
parent 3033217632
commit 7737c12a95

View File

@ -29,7 +29,6 @@ module.exports = {
return msg.channel.send('<:redx:674263474704220182> I cannot speak in your voice channel, make sure I have the proper permissions!');
}
if (url.match(/^https?:\/\/(www.youtube.com|youtube.com)\/playlist(.*)$/)) {
console.log('link')
const lmsg = await msg.channel.send('<a:loading:674284196700618783> Loading song(s)');
const playlist = await youtube.getPlaylist(url);
const videos = await playlist.getVideos();
@ -40,7 +39,6 @@ module.exports = {
return lmsg.edit(`<:green_check_mark:674265384777416705> Playlist: **${playlist.title}** has been added to the queue!`);
} else {
try {
console.log('searching videos')
var video = await youtube.getVideo(url);
} catch (error) {
try {
@ -53,7 +51,6 @@ module.exports = {
.setColor(client.config.embedColor)
msg.channel.send(embed);
try {
console.log('waiting response')
var response = await msg.channel.awaitMessages(message2 => message2.content > 0 && message2.content < 11 && message2.author === msg.author, {
max: 1,
time: 10000,
@ -63,7 +60,6 @@ module.exports = {
console.error(err);
return msg.channel.send('<:redx:674263474704220182> Cancelling video selection');
}
console.log('getting video')
const videoIndex = parseInt(response.first().content);
var video = await youtube.getVideoByID(videos[videoIndex - 1].id);
} catch (err) {
@ -71,7 +67,6 @@ module.exports = {
return msg.channel.send('<:redx:674263474704220182> I could not obtain any search results!');
}
}
console.log('handlevideo')
return client.funcs.handleVideo(video, msg, voiceChannel, client, false);
}
}