Fixed a compile error when building with the bundled TLS/SSL certificates.

This commit is contained in:
Leon Styhre 2022-01-04 21:38:46 +01:00
parent 254b00a3d8
commit 5d79c3d77e

View file

@ -70,7 +70,7 @@ HttpReq::HttpReq(const std::string& url)
// these latter operating systems unless the bundled file is used.
curl_easy_setopt(mHandle, CURLOPT_CAINFO,
ResourceManager::getInstance()
->getResourcePath(":/certificates/curl-ca-bundle.crt")
.getResourcePath(":/certificates/curl-ca-bundle.crt")
.c_str());
#endif