diff --git a/src/driver/pictureviewer/pictureviewer.cpp b/src/driver/pictureviewer/pictureviewer.cpp index aab815c70..3f73ae03e 100644 --- a/src/driver/pictureviewer/pictureviewer.cpp +++ b/src/driver/pictureviewer/pictureviewer.cpp @@ -120,7 +120,6 @@ std::string CPictureViewer::DownloadImage(std::string url) curl_easy_setopt(ch, CURLOPT_WRITEDATA, tmpFile); curl_easy_setopt(ch, CURLOPT_FAILONERROR, 1L); curl_easy_setopt(ch, CURLOPT_URL, url.c_str()); - curl_easy_setopt(ch, CURLOPT_NOSIGNAL,1); curl_easy_setopt(ch, CURLOPT_CONNECTTIMEOUT, 3); curl_easy_setopt(ch, CURLOPT_TIMEOUT, 4); CURLcode res = curl_easy_perform(ch);