Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work around a dbus-broker bug with path_namespace='/' match rules #381

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/src/dbus_remote_object_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ class DBusRemoteObjectManager extends DBusRemoteObject {
{required String name, required DBusObjectPath path})
: super(client, name: name, path: path) {
var rawSignals =
DBusSignalStream(client, sender: name, pathNamespace: path);
DBusSignalStream(client,
sender: name,
/// Workaround for https://github.com/bus1/dbus-broker/issues/309
pathNamespace: path.value != '/' ? path : null);
PapyElGringo marked this conversation as resolved.
Show resolved Hide resolved
signals = rawSignals.map((signal) {
if (signal.interface == 'org.freedesktop.DBus.ObjectManager' &&
signal.name == 'InterfacesAdded' &&
Expand Down
Loading