You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What's happening?
The bot has been receiving 403 errors from Youtube for the last few days. This is a known issue at 'ytdl-core' but it has not been fixed yet: fent/node-ytdl-core#1299
One possible solution would be to switch to https://github.com/distubejs/ytdl-core, which is already patched and usually reacts faster to this kind of issue.
Temporary fix
In the mean time, if anyone want to fix their own Docker installation, you can add this to your Dockerfile:
# Temporary fix for the 403 errors
entrypoint: bash
command: -c "npm install @distube/ytdl-core@latest && sed -i 's%ytdl-core%@distube/ytdl-core%g' src/services/player.ts && tini -- yarn start"```
The text was updated successfully, but these errors were encountered:
What's happening?
The bot has been receiving 403 errors from Youtube for the last few days. This is a known issue at 'ytdl-core' but it has not been fixed yet: fent/node-ytdl-core#1299
One possible solution would be to switch to https://github.com/distubejs/ytdl-core, which is already patched and usually reacts faster to this kind of issue.
Temporary fix
In the mean time, if anyone want to fix their own Docker installation, you can add this to your Dockerfile:
The text was updated successfully, but these errors were encountered: