mirror of
https://github.com/danbulant/discord.js
synced 2026-06-09 17:52:55 +00:00
voice: backport null key fix
This commit is contained in:
parent
33a4232652
commit
5f50d9e627
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ class StreamDispatcher extends VolumeInterface {
|
||||||
|
|
||||||
processPacket(packet) {
|
processPacket(packet) {
|
||||||
try {
|
try {
|
||||||
if (this.destroyed) {
|
if (this.destroyed || !this.player.voiceConnection.authentication.secretKey) {
|
||||||
this.setSpeaking(false);
|
this.setSpeaking(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue