summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-05 09:52:53 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-19 03:43:33 +0200
commita5204fe5b3a403f25a5a2781761cd2303391cf36 (patch)
tree65f814251ab3e293b5e15ba4bb8b81b0a045c231 /desktop
parentdb59b84a319c3309985fbe27672e68b84d84d7ad (diff)
remove double '/' in update download URL
Change-Id: I4dc4c1407d82b10adf8ad677ce192d1bd30aeaa2
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/updater.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx
index b57b3d1879ba..5d60916ec700 100644
--- a/desktop/source/app/updater.cxx
+++ b/desktop/source/app/updater.cxx
@@ -607,7 +607,7 @@ void update_checker()
OUString aChannel = officecfg::Office::Update::Update::UpdateChannel::get();
OUString aDownloadCheckURL = aDownloadCheckBaseURL + "update/check/1/" + aProductName +
- "/" + aBuildID + "/" + aBuildTarget + "/" + "/" + aChannel;
+ "/" + aBuildID + "/" + aBuildTarget + "/" + aChannel;
OString aURL = OUStringToOString(aDownloadCheckURL, RTL_TEXTENCODING_UTF8);
Updater::log("Update check: " + aURL);