diff --git a/plugins/downloader/youtube-dl.js b/plugins/downloader/youtube-dl.js index 2640265b..540f24d8 100644 --- a/plugins/downloader/youtube-dl.js +++ b/plugins/downloader/youtube-dl.js @@ -29,6 +29,7 @@ const downloadVideoToMP3 = (videoUrl, sendFeedback, sendError, reinit) => { filter: "audioonly", quality: "highestaudio", highWaterMark: 32 * 1024 * 1024, // 32 MB + requestOptions: { maxRetries: 3 }, }); } catch (err) { sendError(err);