summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_image_frame.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/video_image_frame.cc
parent820cbc8c4f79769d43e56f06ab79c92ce6d2363a (diff)
no error logging for CURL HTTP requests; future callers can request it if necessary
Diffstat (limited to 'gtk2_ardour/video_image_frame.cc')
-rw-r--r--gtk2_ardour/video_image_frame.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/video_image_frame.cc b/gtk2_ardour/video_image_frame.cc
index 5d0aea3407..2473da0b4e 100644
--- a/gtk2_ardour/video_image_frame.cc
+++ b/gtk2_ardour/video_image_frame.cc
@@ -210,7 +210,7 @@ http_get_thread (void *arg) {
int timeout = 1000; // * 5ms -> 5sec
char *res = NULL;
do {
- res = ArdourCurl::http_get (url, &status);
+ res = ArdourCurl::http_get (url, &status, false);
if (status == 503) Glib::usleep(5000); // try-again
} while (status == 503 && --timeout > 0);