summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--backend/VersionFactory.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/VersionFactory.cpp b/backend/VersionFactory.cpp
index d0242f17..7bec4370 100644
--- a/backend/VersionFactory.cpp
+++ b/backend/VersionFactory.cpp
@@ -104,6 +104,12 @@ QSharedPointer<FullVersion> FullVersionFactory::parse4(QJsonObject root, QShared
continue;
QSharedPointer<Library> library(new Library(nameVal.toString()));
+ auto urlVal = libObj.value("url");
+ if(urlVal.isString())
+ {
+ library->setBaseUrl(urlVal.toString());
+ }
+
// Extract excludes (if any)
auto extractVal = libObj.value("extract");
if(extractVal.isObject())