GH-1020 use plain strings for library URLs
Because the URLs can contain {}, which are percent encoded in URLs and this breaks variable substitution
This commit is contained in:
@ -228,7 +228,7 @@ void OneSixUpdate::jarlibStart()
|
||||
}
|
||||
|
||||
QString raw_storage = lib->storageSuffix();
|
||||
QString raw_dl = lib->url().toString();
|
||||
QString raw_dl = lib->url();
|
||||
|
||||
auto f = [&](QString storage, QString dl)
|
||||
{
|
||||
|
Reference in New Issue
Block a user