1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-24 05:17:46 +00:00

Fix the asset updater downloading and checking the wrong Dalamud channel

Whoopsie, forgot to actually add it to the URL...
This commit is contained in:
Joshua Goins 2024-07-01 23:05:46 -04:00
parent a30b26fa3a
commit 1401f9e85e

View file

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