distubejs / example

An easy to use and customize discord music bot. Support YouTube, Spotify, SoundCloud, and 700+ more sites
https://distube.js.org
MIT License
149 stars 72 forks source link

Resume command not working if the bot is hosted with heroku #7

Closed Killmeplz-ops closed 3 years ago

Killmeplz-ops commented 3 years ago

My distube resume command's code: else if (command == 'resume') { const queque = distube.getQueue(message) if (!queque) return message.channel.send('Nothing is playing')

    const resumeEmbed = new Discord.MessageEmbed()
    .setTitle(`:play_pause: **RESUMED SONG**`)
    .setDescription(`I have resumed that song`)
    .setColor(`#02caf7`);
   distube.resume(message);
   message.channel.send(resumeEmbed)
aeongdesu commented 3 years ago

https://github.com/skick1234/DisTube/issues/75#issuecomment-809867300