diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-22 09:07:24 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-22 09:08:35 +0000 |
commit | 72d40f13a40bc23e86cd163053547ea779ab1c06 (patch) | |
tree | 3579f77104b39a2d33b82e26198a9075b9ba8635 | |
parent | Merge pull request #1773 (diff) | |
download | monero-72d40f13a40bc23e86cd163053547ea779ab1c06.tar.xz |
updates: use HTTP, not HTTPS
The files are hashed and the hashes signed
-rw-r--r-- | src/common/updates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |