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:31 +0100
commitf6eb32817537b631d6fb83e26106031d9119fce7 (patch)
tree15bee03dd76547d6ba0f9c5cd9669d8f7097dcc1 /src/lib
parentd5606fffcdc07617ac77c28147b0d6a2b372666f (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 6292d83d7..0f7e92988 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);