1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-03 20:32:07 -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 {
if err := m.Unsubscribe(subID); err != nil {
log.Warnf("dbus: failed to unsubscribe %s: %v", subID, err)
}
_ = m.Unsubscribe(subID)
}
}