mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-02 15:02:50 +02:00
argh
This commit is contained in:
parent
7662ffb64a
commit
a0253a0970
1 changed files with 8 additions and 4 deletions
|
@ -136,8 +136,10 @@ void CV2::_memberChanged(nlohmann::json& old, nlohmann::json& memberConfig, bool
|
|||
}
|
||||
}
|
||||
|
||||
// fprintf(stderr, "CV2::_memberChanged\n");
|
||||
DB::_memberChanged(old, memberConfig, notifyListeners);
|
||||
if (notifyListeners) {
|
||||
// fprintf(stderr, "CV2::_memberChanged\n");
|
||||
DB::_memberChanged(old, memberConfig, notifyListeners);
|
||||
}
|
||||
}
|
||||
|
||||
void CV2::_networkChanged(nlohmann::json& old, nlohmann::json& networkConfig, bool notifyListeners)
|
||||
|
@ -164,8 +166,10 @@ void CV2::_networkChanged(nlohmann::json& old, nlohmann::json& networkConfig, bo
|
|||
}
|
||||
}
|
||||
|
||||
// fprintf(stderr, "CV2::_networkChanged\n");
|
||||
DB::_networkChanged(old, networkConfig, false);
|
||||
if (notifyListeners) {
|
||||
// fprintf(stderr, "CV2::_networkChanged\n");
|
||||
DB::_networkChanged(old, networkConfig, false);
|
||||
}
|
||||
}
|
||||
|
||||
bool CV2::save(nlohmann::json& record, bool notifyListeners)
|
||||
|
|
Loading…
Add table
Reference in a new issue