FeedReader: Fixed embedding of images with https

This commit is contained in:
thunder2 2023-04-10 21:17:49 +02:00
parent 2baec2baab
commit c90ea518c5
2 changed files with 4 additions and 3 deletions

View file

@ -94,6 +94,7 @@ CURLcode CURLWrapper::downloadBinary(const std::string &link, std::vector<unsign
curl_easy_setopt(mCurl, CURLOPT_URL, link.c_str());
curl_easy_setopt(mCurl, CURLOPT_WRITEFUNCTION, writeFunctionBinary);
curl_easy_setopt(mCurl, CURLOPT_WRITEDATA, &data);
curl_easy_setopt(mCurl, CURLOPT_SSL_VERIFYPEER, false);
return curl_easy_perform(mCurl);
}