Skip to content
Open
Changes from all commits
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
9 changes: 6 additions & 3 deletions dbus_next/message_bus.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,9 +760,12 @@ def _find_message_handler(self, msg):
for method in ServiceInterface._get_methods(interface):
if method.disabled:
continue
if msg._matches(interface=interface.name,
member=method.name,
signature=method.in_signature):
if msg.interface is None and msg._matches(
member=method.name,
signature=method.in_signature
) or msg._matches(interface=interface.name,
member=method.name,
signature=method.in_signature):
handler = self._make_method_handler(interface, method)
break
if handler:
Expand Down