From 443cc7df65aa5fcc070624fa8b1bbe523b6b9aa2 Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 8 Aug 2018 20:55:40 +0200 Subject: [PATCH] Fixed: Don't throw an exception when a certifcate can't be found --HG-- branch : develop --- code/nel/src/gui/curl_certificates.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/gui/curl_certificates.cpp b/code/nel/src/gui/curl_certificates.cpp index 5cec3c511..7d26e7e5a 100644 --- a/code/nel/src/gui/curl_certificates.cpp +++ b/code/nel/src/gui/curl_certificates.cpp @@ -144,7 +144,7 @@ namespace NLGUI FilesList.push_back(cert); // look for certificate in search paths - string path = CPath::lookup(cert); + string path = CPath::lookup(cert, false); nlinfo("Cert path '%s'", path.c_str()); if (path.empty())