From 00f2578d6171bf303380105b36ec7383905dfdee Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Fri, 13 Feb 2026 16:25:15 +0100 Subject: [PATCH] Add missing BRIDGE device type to NetworkManager enum (#6567) NMDeviceType 13 (NM_DEVICE_TYPE_BRIDGE) was not listed in the DeviceType enum, causing a warning when NetworkManager reported a bridge interface. Co-authored-by: Claude Opus 4.6 --- supervisor/dbus/const.py | 1 + 1 file changed, 1 insertion(+) diff --git a/supervisor/dbus/const.py b/supervisor/dbus/const.py index 10c3d613e..9477be05c 100644 --- a/supervisor/dbus/const.py +++ b/supervisor/dbus/const.py @@ -306,6 +306,7 @@ class DeviceType(DBusIntEnum): WIRELESS = 2 BLUETOOTH = 5 VLAN = 11 + BRIDGE = 13 TUN = 16 VETH = 20 WIREGUARD = 29