From b8d0e78267b396f0f0c604c74bb6b3e9f9c7fce9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 14 Jul 2018 21:52:32 +0100 Subject: [PATCH] Fix update check (#1338). --- src/lib/update_checker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2