fix: properly set details in InstanceCreationTask

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2026-02-02 16:44:49 +05:00
parent f085a0ef25
commit d464c1ea68
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF

View file

@ -81,7 +81,6 @@ void InstanceCreationTask::executeTask()
if (!m_abort) {
setAbortable(true);
setStatus(tr("Downloading game files"));
qDebug() << "Downloading game files";
auto updateTasks = m_instance->createUpdateTask();
@ -102,6 +101,7 @@ void InstanceCreationTask::executeTask()
}
});
propagateFromOther(task.get());
setDetails(tr("Downloading game files"));
m_gameFilesTask = task;
m_gameFilesTask->start();