[Backport release-10.x] start core update task only if not running already (#4961)

This commit is contained in:
Alexandru Ionut Tripon 2026-02-04 11:38:36 +02:00 committed by GitHub
commit 301bce3c72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -358,7 +358,9 @@ CoreModFolderPage::CoreModFolderPage(BaseInstance* inst, std::shared_ptr<ModFold
m_container->refreshContainer();
}
});
update->start();
if (!update->isRunning()) {
update->start();
}
}
}
}