1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 19:57:45 +00:00

Use steam when logging into a Square Enix account

This commit is contained in:
Joshua Goins 2022-01-30 17:05:47 -05:00
parent 6ff0b2be5a
commit a29da3628f

View file

@ -36,7 +36,7 @@ void SquareLauncher::getStored(const LoginInformation& info) {
query.addQueryItem("isft", "0");
query.addQueryItem("cssmode", "1");
query.addQueryItem("isnew", "1");
query.addQueryItem("issteam", "0");
query.addQueryItem("issteam", info.useSteam ? "1" : "0");
QUrl url("https://ffxiv-login.square-enix.com/oauth/ffxivarr/login/top");
url.setQuery(query);