From f2d0ceab3356d2a86c70930d4ed5a3b8bf4b30c8 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 17 Feb 2026 19:13:02 +0100 Subject: [PATCH] Add missing WIFI_P2P device type to NetworkManager enum (#6574) Add the missing WIFI_P2P (30) entry to the DeviceType NetworkManager enum. Without it, systems with a Wi-Fi P2P interface log a warning: Unknown DeviceType value received from D-Bus: 30 Closes #6573 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 9477be05c..7e6ad6c9c 100644 --- a/supervisor/dbus/const.py +++ b/supervisor/dbus/const.py @@ -310,6 +310,7 @@ class DeviceType(DBusIntEnum): TUN = 16 VETH = 20 WIREGUARD = 29 + WIFI_P2P = 30 LOOPBACK = 32