diff --git a/client/events/voiceStateUpdate.js b/client/events/voiceStateUpdate.js index 366ae1f..f35ee6a 100644 --- a/client/events/voiceStateUpdate.js +++ b/client/events/voiceStateUpdate.js @@ -32,7 +32,7 @@ module.exports = { } if (oldState.channel.members.size === 1 && oldState.channel === radio.voiceChannel || change) { setTimeout(() => { - if (!radio) return; + if (!radio || !radio.connection.dispatcher || !radio.connection.dispatcher === null) return; if (radio.voiceChannel.members.size === 1) { client.funcs.statisticsUpdate(client, newState.guild, radio); radio.connection.dispatcher.destroy(); @@ -42,4 +42,4 @@ module.exports = { }, 120000); } } -}; \ No newline at end of file +};