From 96f829207aed6e1b511bcf09675c96ae8b4c202b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 21 Dec 2023 21:06:33 -0500 Subject: [PATCH] Misc move printRequest --- launcher/src/gameinstaller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/gameinstaller.cpp b/launcher/src/gameinstaller.cpp index d2bcf6f..b05726b 100644 --- a/launcher/src/gameinstaller.cpp +++ b/launcher/src/gameinstaller.cpp @@ -29,9 +29,9 @@ void GameInstaller::installGame() const QDir installDirectory = m_profile.gamePath(); const QNetworkRequest request = QNetworkRequest(QUrl(installerUrl)); + Utility::printRequest(QStringLiteral("GET"), request); auto reply = m_launcher.mgr()->get(request); - Utility::printRequest(QStringLiteral("GET"), request); QObject::connect(reply, &QNetworkReply::finished, [this, reply, installDirectory] { if (reply->error() != QNetworkReply::NetworkError::NoError) {