We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49a7dd3 + a9a8d6d commit 0a92415Copy full SHA for 0a92415
src/structures/Player.ts
@@ -559,6 +559,8 @@ export class Player {
559
560
// send to lavalink, that it should stop playing
561
await this.node.updatePlayer({ guildId: this.guildId, playerOptions: { track: { encoded: null } } });
562
+ // on some cases the sending of "stopplaying state" from lavalink does not happen, so we hardcode it, just to be sure.
563
+ this.paused = false;
564
565
this.ping.lavalink = Math.round((performance.now() - now) / 10) / 100;
566
@@ -891,3 +893,4 @@ export class Player {
891
893
}
892
894
895
896
+
0 commit comments