write stable audio queue code challenge (instantly failed)

This commit is contained in:
TheEssem 2021-03-05 22:13:58 -06:00
parent 4fac887e22
commit 7cf9bcca4e
1 changed files with 1 additions and 1 deletions

View File

@ -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 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) {
this.queues.set(voiceChannel.guild.id, oldQueue ? [...oldQueue, tracks[0].track] : [tracks[0].track]);
}