From f7190f53ff9becffb2ec7cfcbfe5ecbc92fefba5 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 28 Feb 2025 09:50:58 -0500 Subject: [PATCH] fix(http): lower TLS to v1.2 for downloading covers (#3691) --- src/httpcommon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpcommon.h b/src/httpcommon.h index 7c86ecb4..8b979994 100644 --- a/src/httpcommon.h +++ b/src/httpcommon.h @@ -23,7 +23,7 @@ namespace http { ); int reload_user_creds(const std::string &file); - bool download_file(const std::string &url, const std::string &file, long ssl_version = CURL_SSLVERSION_TLSv1_3); + bool download_file(const std::string &url, const std::string &file, long ssl_version = CURL_SSLVERSION_TLSv1_2); std::string url_escape(const std::string &url); std::string url_get_host(const std::string &url);