mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 21:07:45 +00:00
Fix typo in the update channels
This commit is contained in:
parent
e4da951cf9
commit
1343558506
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
const QString platform = QStringLiteral("win32");
|
const QString platform = QStringLiteral("win32");
|
||||||
const QString bootUpdateChannel = QStringLiteral("ffxivneo_release_boot");
|
const QString bootUpdateChannel = QStringLiteral("ffxivneo_release_boot");
|
||||||
const QString gameUpdateChannel = QStringLiteral("win32");
|
const QString gameUpdateChannel = QStringLiteral("ffxivneo_release_game");
|
||||||
|
|
||||||
const QByteArray patchUserAgent = QByteArrayLiteral("FFXIV PATCH CLIENT");
|
const QByteArray patchUserAgent = QByteArrayLiteral("FFXIV PATCH CLIENT");
|
||||||
const QByteArray macosPatchUserAgent = QByteArrayLiteral("FFXIV-MAC PATCH CLIEN");
|
const QByteArray macosPatchUserAgent = QByteArrayLiteral("FFXIV-MAC PATCH CLIEN");
|
||||||
|
@ -165,7 +165,7 @@ QCoro::Task<bool> SquareEnixLogin::checkBootUpdates()
|
||||||
QUrl url;
|
QUrl url;
|
||||||
url.setScheme(QStringLiteral("http"));
|
url.setScheme(QStringLiteral("http"));
|
||||||
url.setHost(QStringLiteral("patch-bootver.%1").arg(m_launcher.settings()->squareEnixServer()));
|
url.setHost(QStringLiteral("patch-bootver.%1").arg(m_launcher.settings()->squareEnixServer()));
|
||||||
url.setPath(QStringLiteral("/http/%1/%2/%3/").arg(platform, gameUpdateChannel, m_info->profile->bootVersion()));
|
url.setPath(QStringLiteral("/http/%1/%2/%3/").arg(platform, bootUpdateChannel, m_info->profile->bootVersion()));
|
||||||
url.setQuery(query);
|
url.setQuery(query);
|
||||||
|
|
||||||
auto request = QNetworkRequest(url);
|
auto request = QNetworkRequest(url);
|
||||||
|
|
Loading…
Add table
Reference in a new issue