Call D-Bus ReloadConfig asynchronously

This commit is contained in:
Ilya Fedin 2023-09-04 02:12:14 +04:00 committed by John Preston
parent 876a803e0e
commit 0079a18e97

View file

@ -371,15 +371,16 @@ bool GenerateServiceFile(bool silent = false) {
} }
try { try {
const auto connection = Gio::DBus::Connection::get_sync( Gio::DBus::Connection::get_sync(
Gio::DBus::BusType::SESSION); Gio::DBus::BusType::SESSION
)->call(
connection->call_sync(
base::Platform::DBus::kObjectPath, base::Platform::DBus::kObjectPath,
base::Platform::DBus::kInterface, base::Platform::DBus::kInterface,
"ReloadConfig", "ReloadConfig",
{}, {},
base::Platform::DBus::kService); {},
base::Platform::DBus::kService
);
} catch (...) { } catch (...) {
} }