From ca437aebee9c4f3f12a34b3b8acd2baef293da73 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Mon, 5 Jan 2026 17:57:31 +0000 Subject: [PATCH] freesound: fix download progress bar Missing part of 821385eb. --- gtk2_ardour/sfdb_freesound_mootcher.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/sfdb_freesound_mootcher.cc b/gtk2_ardour/sfdb_freesound_mootcher.cc index 794c4d92bc..eccd3b85da 100644 --- a/gtk2_ardour/sfdb_freesound_mootcher.cc +++ b/gtk2_ardour/sfdb_freesound_mootcher.cc @@ -551,7 +551,7 @@ Mootcher::fetchAudioFile(std::string originalFileName, std::string theID, std::s cancel_download = false; curl_easy_setopt (curl, CURLOPT_NOPROGRESS, 0); // turn on the progress bar - curl_easy_setopt (curl, CURLOPT_PROGRESSFUNCTION, progress_callback); + curl_easy_setopt (curl, CURLOPT_XFERINFOFUNCTION, progress_callback); curl_easy_setopt (curl, CURLOPT_PROGRESSDATA, this); if (oauth_token == "") {