#Voice Connection Issue
27 messages · Page 1 of 1 (latest)
- What's your exact discord.js
npm list discord.jsand nodenode -vversion? - Not a discord.js issue? Check out #1081585952654360687.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
looks like a firewall/proxy issue. the voice connection's websocket doesn't seem to be able to reach discord in time
It does connect to the voice channel, but doesn't do anything then comes up with that error, is there a way to unblock it?
Umm
It joins the discord voice channel
But then like freezes until it comes up with that error
So, maybe doesn't connect properly
yeah, then the VoiceWebSocket doesn't connect. the joining is done over the regular bot gateway WebSocket
What would be the fix?
DiscordJS Version: 12.5.3
I'm willing to believe this is due to one of the many things fixed/implemented in the years since v12
please update
Updated them both to the latest and got a new one
So I think I'm missing a dependency or something
Did you update djs to the dev version instead of stable v14?
yeah, was it meant to be stable 14?
depends. Do you want a stable library and support for issues? or the latest features with possibly broken dependencies you'd need to overwrite to use dev versions too etc.?
Yeh that's true, I can't seem to get djs 14 is there a certain way? cause it keeps installing 10.5.2
Managed to push it to 14.12.1 bit gotta fix the ClientMissingIntents
show what command you use. and how
you got a lot more to fix, going from 12.5.3 to 14.14.1
I'm guessing you mean this, right?
client.on('message', async message => {
if (!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).split(' ');
const command = args.shift().toLowerCase();
});
https://github.com/leinstay/discobot would be easier to post this here
probably would be easier to code that from scratch instead of trying to get a 2y old code from someone else up to date
