diff options
author | 2019-02-09 10:37:55 -0800 | |
---|---|---|
committer | 2019-04-04 14:52:31 -0700 | |
commit | 736941870ae92ebd26e30b57276bb5c751bdfdf7 (patch) | |
tree | 83d51a6c69d6e6f01e3f345b807be907491e42da /desktop-widgets/updatemanager.cpp | |
parent | e685e7e9de3ad93a32fe51d7a04407c574cc08be (diff) | |
download | subsurface-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.cpp | 2 |
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"); |