1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-13 01:02:18 -04:00

core/server/dbus: suppress unsubscribe warnings

This commit is contained in:
bbedward
2026-02-10 17:52:39 -05:00
parent 1cdec5d687
commit a337585b00

View File

@@ -276,9 +276,7 @@ func (m *Manager) UnsubscribeClient(clientID string) {
}) })
for _, subID := range toDelete { for _, subID := range toDelete {
if err := m.Unsubscribe(subID); err != nil { _ = m.Unsubscribe(subID)
log.Warnf("dbus: failed to unsubscribe %s: %v", subID, err)
}
} }
} }