mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 10:09:14 +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
Notes:
sideshowbarker
2024-07-17 06:31:36 +09:00
Author: https://github.com/thankyouverycool
Commit: 6f394d9ee2
Pull-request: https://github.com/SerenityOS/serenity/pull/15329
Reviewed-by: https://github.com/alimpfard
4 changed files with 4 additions and 4 deletions
|
@ -72,7 +72,7 @@ void Client::write_bool(StringView domain, StringView group, StringView key, boo
|
|||
|
||||
void Client::remove_key(StringView domain, StringView group, StringView key)
|
||||
{
|
||||
async_remove_key(domain, group, key);
|
||||
remove_key_entry(domain, group, key);
|
||||
}
|
||||
|
||||
void Client::notify_changed_string_value(String const& domain, String const& group, String const& key, String const& value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue