mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 04:10:59 -05:00
Prevent music player error on Spotify links.
This commit is contained in:
parent
141de1a3cd
commit
3b883cdefa
@ -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.`);
|
||||
},
|
||||
|
@ -19,7 +19,7 @@
|
||||
"registerCommands": true,
|
||||
"commands": true,
|
||||
"logs": true,
|
||||
"music": false,
|
||||
"music": true,
|
||||
"buttonRoles": true,
|
||||
"automod": true,
|
||||
"mpstats": true,
|
||||
|
Loading…
Reference in New Issue
Block a user