unit tests and fixes

This commit is contained in:
Scott E. Graves 2024-12-20 18:27:45 -06:00
parent b65c9d2ab7
commit a9be30e6e7

View File

@ -1105,7 +1105,7 @@ void app_config::save() {
recur_mutex_lock lock(read_write_mutex_); recur_mutex_lock lock(read_write_mutex_);
auto file_path = get_config_file_path(); auto file_path = get_config_file_path();
if (not(config_changed_ || utils::file::file(file_path).exists())) { if (not config_changed_ && utils::file::file(file_path).exists()) {
return; return;
} }