From da038c6408692599799ea94cfab69be9cf46042b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 4 Dec 2023 17:44:48 -0500 Subject: [PATCH] Fix QTemporaryDir file path issue --- launcher/src/assetupdater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/assetupdater.cpp b/launcher/src/assetupdater.cpp index 3409d4d..a288ad3 100644 --- a/launcher/src/assetupdater.cpp +++ b/launcher/src/assetupdater.cpp @@ -190,7 +190,7 @@ QCoro::Task AssetUpdater::installDalamud() qInfo(ASTRA_LOG) << "Finished downloading Dalamud"; - QFile file(m_tempDir.filePath(QStringLiteral("/latest.zip"))); + QFile file(m_tempDir.filePath(QStringLiteral("latest.zip"))); file.open(QIODevice::WriteOnly); file.write(reply->readAll()); file.close();