Fix an error that AppConfig::save is called from non main thread

This commit is contained in:
SoftFever
2026-01-05 23:28:33 +08:00
parent ac482935ea
commit 01f5c4caaa
2 changed files with 4 additions and 1 deletions

View File

@@ -1522,7 +1522,10 @@ int GUI_App::install_plugin(std::string name, std::string package_name, InstallP
config_version = BBL::get_latest_network_version();
BOOST_LOG_TRIVIAL(info) << "[install_plugin] config_version was empty, using latest: " << config_version;
app_config->set_network_plugin_version(config_version);
GUI::wxGetApp().CallAfter([this] {
if (app_config)
app_config->save();
});
}
if (!config_version.empty() && boost::filesystem::exists(legacy_lib_path)) {
#if defined(_MSC_VER) || defined(_WIN32)