This commit is contained in:
Grant Limberg 2025-07-16 12:03:01 -07:00
parent 7662ffb64a
commit a0253a0970

View file

@ -136,9 +136,11 @@ void CV2::_memberChanged(nlohmann::json& old, nlohmann::json& memberConfig, bool
} }
} }
if (notifyListeners) {
// fprintf(stderr, "CV2::_memberChanged\n"); // fprintf(stderr, "CV2::_memberChanged\n");
DB::_memberChanged(old, memberConfig, notifyListeners); DB::_memberChanged(old, memberConfig, notifyListeners);
} }
}
void CV2::_networkChanged(nlohmann::json& old, nlohmann::json& networkConfig, bool notifyListeners) void CV2::_networkChanged(nlohmann::json& old, nlohmann::json& networkConfig, bool notifyListeners)
{ {
@ -164,9 +166,11 @@ void CV2::_networkChanged(nlohmann::json& old, nlohmann::json& networkConfig, bo
} }
} }
if (notifyListeners) {
// fprintf(stderr, "CV2::_networkChanged\n"); // fprintf(stderr, "CV2::_networkChanged\n");
DB::_networkChanged(old, networkConfig, false); DB::_networkChanged(old, networkConfig, false);
} }
}
bool CV2::save(nlohmann::json& record, bool notifyListeners) bool CV2::save(nlohmann::json& record, bool notifyListeners)
{ {