write stable audio queue code challenge (instantly failed)
This commit is contained in:
parent
4fac887e22
commit
7cf9bcca4e
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ exports.play = async (sound, message, music = false) => {
|
||||||
}
|
}
|
||||||
const { tracks } = await fetch(`http://${node.host}:${node.port}/loadtracks?identifier=${sound}`, { headers: { Authorization: node.password } }).then(res => res.json());
|
const { tracks } = await fetch(`http://${node.host}:${node.port}/loadtracks?identifier=${sound}`, { headers: { Authorization: node.password } }).then(res => res.json());
|
||||||
const oldQueue = this.queues.get(voiceChannel.guild.id);
|
const oldQueue = this.queues.get(voiceChannel.guild.id);
|
||||||
if (tracks.length === 0) return `${message.author.mention}, I couldn't find that song!`;
|
if (!tracks || tracks.length === 0) return `${message.author.mention}, I couldn't find that song!`;
|
||||||
if (music) {
|
if (music) {
|
||||||
this.queues.set(voiceChannel.guild.id, oldQueue ? [...oldQueue, tracks[0].track] : [tracks[0].track]);
|
this.queues.set(voiceChannel.guild.id, oldQueue ? [...oldQueue, tracks[0].track] : [tracks[0].track]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue