summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils_videotl.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2018-06-02 13:24:17 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2018-06-02 13:24:31 -0400
commitf448041ec0a6ce5caead0829f309a06cabcdd156 (patch)
tree6583ff36a80f41a40f37ceb0bd2aeb1a838d5af1 /gtk2_ardour/utils_videotl.cc
parent820cbc8c4f79769d43e56f06ab79c92ce6d2363a (diff)
no error logging for CURL HTTP requests; future callers can request it if necessary
Diffstat (limited to 'gtk2_ardour/utils_videotl.cc')
-rw-r--r--gtk2_ardour/utils_videotl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/utils_videotl.cc b/gtk2_ardour/utils_videotl.cc
index b6eace7675..11b7230dde 100644
--- a/gtk2_ardour/utils_videotl.cc
+++ b/gtk2_ardour/utils_videotl.cc
@@ -273,7 +273,7 @@ VideoUtils::video_query_info (
, video_server_url.c_str()
, (video_server_url.length()>0 && video_server_url.at(video_server_url.length()-1) == '/')?"":"/"
, filepath.c_str());
- std::string res = ArdourCurl::http_get (url);
+ std::string res = ArdourCurl::http_get (url, false);
if (res.empty ()) {
return false;
}