1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Fix the asset updater downloading and checking the wrong Dalamud channel

Whoopsie, forgot to actually add it to the URL...

(cherry picked from commit 1401f9e85e)
This commit is contained in:
Joshua Goins 2024-07-01 23:05:46 -04:00
parent a9f45edba6
commit fdafbf961b

View file

@ -157,6 +157,8 @@ QCoro::Task<bool> AssetUpdater::checkRemoteDalamudVersion()
QUrlQuery query; QUrlQuery query;
query.addQueryItem(QStringLiteral("track"), m_profile.dalamudChannelName()); query.addQueryItem(QStringLiteral("track"), m_profile.dalamudChannelName());
url.setQuery(query);
const QNetworkRequest request(url); const QNetworkRequest request(url);
Utility::printRequest(QStringLiteral("GET"), request); Utility::printRequest(QStringLiteral("GET"), request);