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:
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";
|
||||
|
||||
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();
|
||||
|
|
Loading…
Add table
Reference in a new issue