jack3898 / discord-youtube-bot-2

A powerful Discord YouTube Bot.
0 stars 0 forks source link

final song do not get deleted #16

Open giorgionegro opened 2 years ago

giorgionegro commented 2 years ago

it appear to me that the last song will always remain for in queue after a skip or after it finish, is it intended?

MalekMohamed commented 1 year ago

Go to src\classes\modules\YouTubeInterface.ts in line 152 replace if (this.pointer < queueLength) { with if (this.pointer <= queueLength) { This should do the trick.