From 7ce83444282d459dcd3724fa5e2721d1662c5dc0 Mon Sep 17 00:00:00 2001 From: heronhaye Date: Tue, 4 Jun 2019 14:23:40 -0400 Subject: [PATCH] do not ignore transport not found err --- conn.go | 1 + 1 file changed, 1 insertion(+) diff --git a/conn.go b/conn.go index b38f852..f02325a 100644 --- a/conn.go +++ b/conn.go @@ -559,6 +559,7 @@ func getTransport(address string) (transport, error) { f := m[v[:i]] if f == nil { err = errors.New("dbus: invalid bus address (invalid or unsupported transport)") + continue } t, err = f(v[i+1:]) if err == nil {