mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 20:47:45 +00:00
Fix QTemporaryDir file path issue
This commit is contained in:
parent
3b1484dddb
commit
da038c6408
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ QCoro::Task<bool> AssetUpdater::installDalamud()
|
||||||
|
|
||||||
qInfo(ASTRA_LOG) << "Finished downloading Dalamud";
|
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.open(QIODevice::WriteOnly);
|
||||||
file.write(reply->readAll());
|
file.write(reply->readAll());
|
||||||
file.close();
|
file.close();
|
||||||
|
|
Loading…
Add table
Reference in a new issue