From 1ec615343d2122268558b09ce4285a4dec784fb1 Mon Sep 17 00:00:00 2001 From: smplayer-dev <10128951+smplayer-dev@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:31:38 +0100 Subject: [PATCH] Download the 32-bit version of yt-dlp from another repo --- src/youtube/codedownloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/youtube/codedownloader.cpp b/src/youtube/codedownloader.cpp index 5269c503c..e7b610c4e 100644 --- a/src/youtube/codedownloader.cpp +++ b/src/youtube/codedownloader.cpp @@ -194,7 +194,7 @@ void CodeDownloader::askAndDownload(QWidget * parent, ErrorMessage e, const QStr #if defined(_WIN64) url = "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp.exe"; #else - url = "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_x86.exe"; + url = "https://github.com/nicolaasjan/yt-dlp/releases/latest/download/yt-dlp_x86.exe"; #endif output_file = "yt-dlp.exe"; } else {