mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Call D-Bus ReloadConfig asynchronously
This commit is contained in:
parent
876a803e0e
commit
0079a18e97
1 changed files with 6 additions and 5 deletions
|
@ -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 (...) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue