summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-14 21:52:32 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-14 21:54:12 +0100
commit9f4b7dd032e4d588720d46f858171c7f087f3e23 (patch)
tree84877371c63983e85a7aee97d2b85fbaf9eedd24 /src/lib
parent8e79595c7867a634d89fe9da37dc142d63182a02 (diff)
Fix update check (#1338).
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/update_checker.cc2
1 files changed, 1 insertions, 1 deletions
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);