start core update task only if not running already (#4955)

This commit is contained in:
Alexandru Ionut Tripon 2026-02-04 08:59:43 +00:00 committed by GitHub
commit f1a4721a6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -376,7 +376,9 @@ CoreModFolderPage::CoreModFolderPage(BaseInstance* inst, ModFolderModel* mods, Q
m_container->refreshContainer();
}
});
update->start();
if (!update->isRunning()) {
update->start();
}
}
}
}