1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-04-02 08:12:47 +01:00

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 <noreply@anthropic.com>
This commit is contained in:
Stefan Agner
2026-02-17 19:13:02 +01:00
committed by GitHub
parent 3147d080a2
commit f2d0ceab33

View File

@@ -310,6 +310,7 @@ class DeviceType(DBusIntEnum):
TUN = 16
VETH = 20
WIREGUARD = 29
WIFI_P2P = 30
LOOPBACK = 32