From e0d9990236d1813418a3656076b1369214bfc1b6 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Thu, 13 Jul 2023 21:44:44 +1000 Subject: [PATCH] Previous hotfix was basically useless... Let's try this one. --- src/commands/music.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/music.ts b/src/commands/music.ts index 5af8f9e..32afb3b 100644 --- a/src/commands/music.ts +++ b/src/commands/music.ts @@ -31,7 +31,7 @@ export default { play: async()=>{ const url = interaction.options.getString('url'); if (!url.includes('https://open.spotify.com/')) return interaction.reply('Sorry, I can\'t play that. I can only accept Spotify links that contains `https://open.spotify.com/`'); - if (!url.includes('?si=')) return interaction.reply('To be able to play this song/playlist, you need to remove the `?si=` from the URL or it will basically do nothing.') + if (!url.split('').includes('?')) return interaction.reply('To be able to play this song/playlist, you need to remove the `?si=` from the URL or it will basically do nothing.') player.play(interaction.member.voice.channel, url); await interaction.reply(`Added the ${url.includes('playlist/') ? 'playlist' : 'song'} to the queue.`); },