-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Status code 403? 🐛 #1658
Comments
I think I found where it fails try {
const resource = await next.makeResource();
this.resource = resource!;
this.player.play(this.resource); // -- AudioPlayerError: Status code: 403 --
this.resource.volume?.setVolumeLogarithmic(this.volume / 100);
} catch (error) {
console.error(error);
return this.processQueue();
} finally {
this.queueLock = false;
} |
The thing is... Because the hosting does not support typescript I had to modify the code to javascript and I don't remember how I did it (it's been a while) And I can't find the 'processQueue()' line that you told me about. |
I'm also having this issue. Note that this is the complete error log:
|
Nevermind, this is being addressed in #1645. This issue can be closed. |
Describe the bug
Basically when trying to play a song, it does not play and this appears on the console:
AudioPlayer Error: Status code: 403
How To Reproduce
Steps to reproduce the behavior:
Expected behavior
The song playing
Environment (add if possible)
Additional information & screenshots
The text was updated successfully, but these errors were encountered: