1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00

Fix QTemporaryDir file path issue

This commit is contained in:
Joshua Goins 2023-12-04 17:44:48 -05:00
parent 3b1484dddb
commit da038c6408

View file

@ -190,7 +190,7 @@ QCoro::Task<bool> 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();