mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:47:35 +00:00
LibConfig+ConfigServer: Make remove_key() synchronous
Previously, when removing keys, the config utility terminated its connection before changes could be synced.
This commit is contained in:
parent
be6b3710c8
commit
6f394d9ee2
4 changed files with 4 additions and 4 deletions
|
@ -249,7 +249,7 @@ void ConnectionFromClient::write_bool_value(String const& domain, String const&
|
|||
});
|
||||
}
|
||||
|
||||
void ConnectionFromClient::remove_key(String const& domain, String const& group, String const& key)
|
||||
void ConnectionFromClient::remove_key_entry(String const& domain, String const& group, String const& key)
|
||||
{
|
||||
if (!validate_access(domain, group, key))
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue