From ff64b6cf1d21e35cbc10ebc6cf3838f5b0244355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 31 May 2015 17:51:20 +0200 Subject: GH-1020 use plain strings for library URLs Because the URLs can contain {}, which are percent encoded in URLs and this breaks variable substitution --- logic/minecraft/RawLibrary.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'logic/minecraft/RawLibrary.h') diff --git a/logic/minecraft/RawLibrary.h b/logic/minecraft/RawLibrary.h index 3f3cb925..e51cbf4c 100644 --- a/logic/minecraft/RawLibrary.h +++ b/logic/minecraft/RawLibrary.h @@ -86,7 +86,7 @@ public: /* methods */ QString storagePath() const; /// Set the url base for downloads - void setBaseUrl(const QUrl &base_url) + void setBaseUrl(const QString &base_url) { m_base_url = base_url; } @@ -127,7 +127,7 @@ public: /* methods */ bool isActive() const; /// Get the URL to download the library from - QUrl url() const; + QString url() const; protected: /* data */ /// the basic gradle dependency specifier. @@ -141,7 +141,7 @@ protected: /* data */ public: /* data */ // TODO: make all of these protected, clean up semantics of implicit vs. explicit values. /// URL where the file can be downloaded - QUrl m_base_url; + QString m_base_url; /// DEPRECATED: absolute URL. takes precedence the normal download URL, if defined QString m_absolute_url; -- cgit v1.2.3