aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-21 22:21:59 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-21 22:21:59 +0000
commit45101550f2ad0845bd2cce76d658ec124e966f2c (patch)
tree9d212e80eb89064cf5cb9abb3243ae058b70b132
parentMerge pull request #1761 (diff)
downloadmonero-45101550f2ad0845bd2cce76d658ec124e966f2c.tar.xz
updates: use updates host, not downloads, for HTTP
-rw-r--r--src/common/updates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/updates.cpp b/src/common/updates.cpp
index 936106881..c84566f57 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://downloads.getmonero.org/";
+ static const char base[] = "https://updates.getmonero.org/";
#ifdef _WIN32
static const char extension[] = ".zip";
#else