diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-21 22:21:59 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-21 22:21:59 +0000 |
commit | 45101550f2ad0845bd2cce76d658ec124e966f2c (patch) | |
tree | 9d212e80eb89064cf5cb9abb3243ae058b70b132 | |
parent | Merge pull request #1761 (diff) | |
download | monero-45101550f2ad0845bd2cce76d658ec124e966f2c.tar.xz |
updates: use updates host, not downloads, for HTTP
-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 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 |