Handle empty zeroconf properties in devolo_home_network (#71288)
* Handle empty zeroconf properties in devolo_home_network * Change approach * Restore test datapull/71297/head
parent
deec879a4b
commit
4e331c331f
|
@ -4,7 +4,9 @@
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/devolo_home_network",
|
"documentation": "https://www.home-assistant.io/integrations/devolo_home_network",
|
||||||
"requirements": ["devolo-plc-api==0.7.1"],
|
"requirements": ["devolo-plc-api==0.7.1"],
|
||||||
"zeroconf": ["_dvl-deviceapi._tcp.local."],
|
"zeroconf": [
|
||||||
|
{ "type": "_dvl-deviceapi._tcp.local.", "properties": { "MT": "*" } }
|
||||||
|
],
|
||||||
"codeowners": ["@2Fake", "@Shutgun"],
|
"codeowners": ["@2Fake", "@Shutgun"],
|
||||||
"quality_scale": "platinum",
|
"quality_scale": "platinum",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
|
|
|
@ -103,7 +103,10 @@ ZEROCONF = {
|
||||||
"domain": "devolo_home_control"
|
"domain": "devolo_home_control"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"domain": "devolo_home_network"
|
"domain": "devolo_home_network",
|
||||||
|
"properties": {
|
||||||
|
"MT": "*"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_easylink._tcp.local.": [
|
"_easylink._tcp.local.": [
|
||||||
|
|
Loading…
Reference in New Issue