summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/updatemanager.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-02-09 10:37:55 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-02-09 10:37:55 -0800
commit3693fe253b03c82004e4977814ce389bf0dc88ba (patch)
tree4fba45df94e59c97c5116cf6345eb10c82fa11ab /desktop-widgets/updatemanager.cpp
parent2743e59415f81522f4b0ce9bb2b25243c6ef18e6 (diff)
downloadsubsurface-3693fe253b03c82004e4977814ce389bf0dc88ba.tar.gz
core: move updatecheck to its own domain
This make it easier to move backend services around. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/updatemanager.cpp')
-rw-r--r--desktop-widgets/updatemanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/updatemanager.cpp b/desktop-widgets/updatemanager.cpp
index 0cc7b8c72..ea2f41868 100644
--- a/desktop-widgets/updatemanager.cpp
+++ b/desktop-widgets/updatemanager.cpp
@@ -43,7 +43,7 @@ void UpdateManager::checkForUpdates(bool automatic)
isAutomaticCheck = automatic;
QString version = subsurface_canonical_version();
QString uuidString = getUUID();
- QString url = QString("http://subsurface-divelog.org/updatecheck.html?os=%1&version=%2&uuid=%3").arg(os, version, uuidString);
+ QString url = QString("http://updatecheck.subsurface-divelog.org/updatecheck.html?os=%1&version=%2&uuid=%3").arg(os, version, uuidString);
QNetworkRequest request;
request.setUrl(url);
request.setRawHeader("Accept", "text/xml");