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-04-04 14:52:31 -0700
commit736941870ae92ebd26e30b57276bb5c751bdfdf7 (patch)
tree83d51a6c69d6e6f01e3f345b807be907491e42da /desktop-widgets/updatemanager.cpp
parente685e7e9de3ad93a32fe51d7a04407c574cc08be (diff)
downloadsubsurface-736941870ae92ebd26e30b57276bb5c751bdfdf7.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");