From 1343558506aa4a2628a20ca8576afb65063f7b1e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 9 Nov 2024 14:45:00 -0500 Subject: [PATCH] Fix typo in the update channels --- launcher/src/squareenixlogin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher/src/squareenixlogin.cpp b/launcher/src/squareenixlogin.cpp index 10a3c83..0aec235 100644 --- a/launcher/src/squareenixlogin.cpp +++ b/launcher/src/squareenixlogin.cpp @@ -20,7 +20,7 @@ const QString platform = QStringLiteral("win32"); 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 macosPatchUserAgent = QByteArrayLiteral("FFXIV-MAC PATCH CLIEN"); @@ -165,7 +165,7 @@ QCoro::Task SquareEnixLogin::checkBootUpdates() QUrl url; url.setScheme(QStringLiteral("http")); 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); auto request = QNetworkRequest(url);