From 72d40f13a40bc23e86cd163053547ea779ab1c06 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Wed, 22 Feb 2017 09:07:24 +0000 Subject: [PATCH] updates: use HTTP, not HTTPS The files are hashed and the hashes signed --- src/common/updates.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/updates.cpp b/src/common/updates.cpp index c84566f57..2140aeaa7 100644 --- a/src/common/updates.cpp +++ b/src/common/updates.cpp @@ -96,7 +96,7 @@ namespace tools std::string get_update_url(const std::string &software, const std::string &subdir, const std::string &buildtag, const std::string &version) { - static const char base[] = "https://updates.getmonero.org/"; + static const char base[] = "http://updates.getmonero.org/"; #ifdef _WIN32 static const char extension[] = ".zip"; #else