Fix update check (#1338).
authorCarl Hetherington <cth@carlh.net>
Sat, 14 Jul 2018 20:52:32 +0000 (21:52 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 14 Jul 2018 20:54:31 +0000 (21:54 +0100)
src/lib/update_checker.cc

index 6292d83d7fc13212e41758ca9119f685f1ae76dc..0f7e92988ac44743c1fb64efeba4113a387e6471 100644 (file)
@@ -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);