From fdafbf961b73a9f10822d10dfb781c78a692d68b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 1 Jul 2024 23:05:46 -0400 Subject: [PATCH] Fix the asset updater downloading and checking the wrong Dalamud channel Whoopsie, forgot to actually add it to the URL... (cherry picked from commit 1401f9e85e1d6bc18dc8a7d3db5f772ad26a4e36) --- launcher/src/assetupdater.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/launcher/src/assetupdater.cpp b/launcher/src/assetupdater.cpp index bc70de7..e8a1d56 100644 --- a/launcher/src/assetupdater.cpp +++ b/launcher/src/assetupdater.cpp @@ -157,6 +157,8 @@ QCoro::Task AssetUpdater::checkRemoteDalamudVersion() QUrlQuery query; query.addQueryItem(QStringLiteral("track"), m_profile.dalamudChannelName()); + url.setQuery(query); + const QNetworkRequest request(url); Utility::printRequest(QStringLiteral("GET"), request);