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:
Petr Mrázek
2015-05-31 17:51:20 +02:00
parent 84757f485b
commit ff64b6cf1d
3 changed files with 14 additions and 7 deletions

View File

@ -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)
{