Skip to content

Commit

Permalink
Don't set DO_NOT_AUTO_START_AT_CONSTRUCTION flag
Browse files Browse the repository at this point in the history
It has no effect for private D-Bus connections
  • Loading branch information
ilya-fedin authored and john-preston committed Mar 6, 2024
1 parent 4fce8b1 commit 27af881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webview/platform/linux/webview_linux_webkitgtk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ void Instance::startProcess() {

HelperProxy::new_(
connection,
Gio::DBusProxyFlags::DO_NOT_AUTO_START_AT_CONSTRUCTION_,
Gio::DBusProxyFlags::NONE_,
kHelperObjectPath,
crl::guard(&guard, [&](
GObject::Object source_object,
Expand Down Expand Up @@ -992,7 +992,7 @@ int Instance::exec() {

MasterProxy::new_(
connection,
Gio::DBusProxyFlags::DO_NOT_AUTO_START_AT_CONSTRUCTION_,
Gio::DBusProxyFlags::NONE_,
kMasterObjectPath,
[&](GObject::Object source_object, Gio::AsyncResult res) {
_master = MasterProxy::new_finish(res, nullptr);
Expand Down

0 comments on commit 27af881

Please sign in to comment.