From db7ff8547fb0ddf40414b0bab1785bb60996a196 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 5 Sep 2022 15:49:58 -0400 Subject: [PATCH] Simplify gate status query building --- launcher/core/src/squareboot.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/launcher/core/src/squareboot.cpp b/launcher/core/src/squareboot.cpp index 3fd0227..8a4e573 100644 --- a/launcher/core/src/squareboot.cpp +++ b/launcher/core/src/squareboot.cpp @@ -50,12 +50,9 @@ void SquareBoot::bootCheck(const LoginInformation& info) { } void SquareBoot::checkGateStatus(LoginInformation* info) { - QUrlQuery query; - query.addQueryItem("", QString::number(QDateTime::currentMSecsSinceEpoch())); - QUrl url; url.setUrl("https://frontier.ffxiv.com/worldStatus/gate_status.json"); - url.setQuery(query); + url.setQuery(QString::number(QDateTime::currentMSecsSinceEpoch())); QNetworkRequest request; request.setUrl(url);