summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2020-09-02 22:11:28 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2020-09-03 18:45:48 +0200
commitff38666a19b09169b1a7cf1f0eda20374bc390de (patch)
treea8edcfe7f5422e8f96b576891954b9b47d70db92 /utils
parent3ff7dc75a1b4c30894e6ecaa98317b253fa3034c (diff)
themeeditor: Fix download URL for targetdb.
We're not using svn anymore since long. Change-Id: I408b1c59dfaafe1e403b0fa49b912862b68c72f8
Diffstat (limited to 'utils')
-rw-r--r--utils/themeeditor/gui/targetdownloader.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/themeeditor/gui/targetdownloader.cpp b/utils/themeeditor/gui/targetdownloader.cpp
index c5b4bf1fe4..ee362f980f 100644
--- a/utils/themeeditor/gui/targetdownloader.cpp
+++ b/utils/themeeditor/gui/targetdownloader.cpp
@@ -49,8 +49,9 @@ TargetDownloader::TargetDownloader(QWidget *parent, QString path) :
ui->label->setText(tr("Downloading targetdb"));
QNetworkRequest request;
- request.setUrl(QUrl("http://svn.rockbox.org/viewvc.cgi/trunk/utils/"
- "themeeditor/resources/targetdb"));
+ request.setUrl(
+ QUrl("https://git.rockbox.org/cgit/rockbox.git/plain/"
+ "utils/themeeditor/resources/targetdb"));
request.setRawHeader("User-Agent", "Rockbox Theme Editor");
reply = manager->get(request);