1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00

Prevent music player error on Spotify links.

This commit is contained in:
toast-ts 2023-07-13 21:40:05 +10:00
parent 141de1a3cd
commit 3b883cdefa
2 changed files with 2 additions and 1 deletions

View File

@ -31,6 +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=<random string of letters>` 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.`);
},

View File

@ -19,7 +19,7 @@
"registerCommands": true,
"commands": true,
"logs": true,
"music": false,
"music": true,
"buttonRoles": true,
"automod": true,
"mpstats": true,