diff options
author | Jamie Mansfield <jmansfield@cadixdev.org> | 2021-07-13 15:42:44 +0100 |
---|---|---|
committer | Jamie Mansfield <jmansfield@cadixdev.org> | 2021-07-13 15:42:44 +0100 |
commit | 66fde9e6b7cfb9fe7cdf30b0aa0432cd892b6a7a (patch) | |
tree | 6ec3f616da476fa1a9948dd715af5f63ad6326c4 /application/pages/modplatform | |
parent | 4401b9e137a92effb566a82cbe4b904b545f0cdf (diff) | |
download | PrismLauncher-66fde9e6b7cfb9fe7cdf30b0aa0432cd892b6a7a.tar.gz PrismLauncher-66fde9e6b7cfb9fe7cdf30b0aa0432cd892b6a7a.tar.bz2 PrismLauncher-66fde9e6b7cfb9fe7cdf30b0aa0432cd892b6a7a.zip |
NOISSUE Correct trending URL string for Technic packs
This seems to have just been an inadvertent mistake when copy-pasting.
This commit just removes an annoying warning.
Diffstat (limited to 'application/pages/modplatform')
-rw-r--r-- | application/pages/modplatform/technic/TechnicModel.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/application/pages/modplatform/technic/TechnicModel.cpp b/application/pages/modplatform/technic/TechnicModel.cpp index a240a94a..def30783 100644 --- a/application/pages/modplatform/technic/TechnicModel.cpp +++ b/application/pages/modplatform/technic/TechnicModel.cpp @@ -95,9 +95,7 @@ void Technic::ListModel::performSearch() NetJob *netJob = new NetJob("Technic::Search"); QString searchUrl = ""; if (currentSearchTerm.isEmpty()) { - searchUrl = QString( - "https://api.technicpack.net/trending?build=multimc" - ).arg(currentSearchTerm); + searchUrl = "https://api.technicpack.net/trending?build=multimc"; } else { |