From 1f173a469c8f16e9cf890a5f0d88bd61440f96f2 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 27 Dec 2024 18:38:11 +0900 Subject: [PATCH] system/dbus: fix inverted system bus state Debug message and socket cleanup gets missed due to this value being inverted. Signed-off-by: Ophestra --- internal/system/dbus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/system/dbus.go b/internal/system/dbus.go index 551af1c..3bed540 100644 --- a/internal/system/dbus.go +++ b/internal/system/dbus.go @@ -36,7 +36,7 @@ func (sys *I) ProxyDBus(session, system *dbus.Config, sessionPath, systemPath st } // system bus is optional - d.system = system == nil + d.system = system != nil // upstream address, downstream socket path var sessionBus, systemBus [2]string