From: Carl Hetherington Date: Sat, 14 Jul 2018 20:52:32 +0000 (+0100) Subject: Fix update check (#1338). X-Git-Tag: v2.13.36~45 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=9f4b7dd032e4d588720d46f858171c7f087f3e23 Fix update check (#1338). --- diff --git a/src/lib/update_checker.cc b/src/lib/update_checker.cc index 6309caabe..98e407822 100644 --- a/src/lib/update_checker.cc +++ b/src/lib/update_checker.cc @@ -62,7 +62,7 @@ UpdateChecker::UpdateChecker () { _curl = curl_easy_init (); - curl_easy_setopt (_curl, CURLOPT_URL, "http://dcpomatic.com/update"); + curl_easy_setopt (_curl, CURLOPT_URL, "https://dcpomatic.com/update"); curl_easy_setopt (_curl, CURLOPT_WRITEFUNCTION, write_callback_wrapper); curl_easy_setopt (_curl, CURLOPT_WRITEDATA, this); curl_easy_setopt (_curl, CURLOPT_TIMEOUT, 20);