mirror of
				https://github.com/warengroup/eximiabots-radiox.git
				synced 2025-11-04 05:49:31 +00:00 
			
		
		
		
	Removed radio.voiceChannel.leave() and replaced with radio.connection.destroy()
This commit is contained in:
		@@ -135,13 +135,13 @@ function play(guild, client, url) {
 | 
			
		||||
        .on("finish", () => {
 | 
			
		||||
            console.log("Stream finished");
 | 
			
		||||
            client.funcs.statisticsUpdate(client, guild, radio);
 | 
			
		||||
            radio.voiceChannel.leave();
 | 
			
		||||
            radio.connection.destroy();
 | 
			
		||||
            client.radio.delete(guild.id);
 | 
			
		||||
            return;
 | 
			
		||||
        })
 | 
			
		||||
        .on("error", error => {
 | 
			
		||||
            console.error(error);
 | 
			
		||||
            radio.voiceChannel.leave();
 | 
			
		||||
            radio.connection.destroy();
 | 
			
		||||
            client.radio.delete(guild.id);
 | 
			
		||||
            return radio.textChannel.send(client.messages.errorPlaying);
 | 
			
		||||
        });
 | 
			
		||||
 
 | 
			
		||||
@@ -10,7 +10,6 @@ module.exports = {
 | 
			
		||||
		if (client.funcs.check(client, msg, command)) {
 | 
			
		||||
            client.funcs.statisticsUpdate(client, msg.guild, radio);
 | 
			
		||||
			radio.connection.destroy();
 | 
			
		||||
			radio.voiceChannel.leave();
 | 
			
		||||
			client.radio.delete(msg.guild.id);
 | 
			
		||||
			msg.channel.send(client.messageEmojis["stop"] + client.messages.stop);
 | 
			
		||||
		}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user