Denonavr bugfixes (#49984)
parent
fec02c88af
commit
0cf07ee2d8
|
@ -42,7 +42,6 @@ async def async_setup_entry(
|
|||
entry.options.get(CONF_ZONE2, DEFAULT_ZONE2),
|
||||
entry.options.get(CONF_ZONE3, DEFAULT_ZONE3),
|
||||
lambda: get_async_client(hass),
|
||||
entry.state,
|
||||
)
|
||||
try:
|
||||
await connect_denonavr.async_connect_receiver()
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Denon AVR Network Receivers",
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/denonavr",
|
||||
"requirements": ["denonavr==0.10.5"],
|
||||
"requirements": ["denonavr==0.10.6"],
|
||||
"codeowners": ["@scarface-4711", "@starkillerOG"],
|
||||
"ssdp": [
|
||||
{
|
||||
|
|
|
@ -246,7 +246,6 @@ class DenonDevice(MediaPlayerEntity):
|
|||
"manufacturer": self._config_entry.data[CONF_MANUFACTURER],
|
||||
"name": self._config_entry.title,
|
||||
"model": f"{self._config_entry.data[CONF_MODEL]}-{self._config_entry.data[CONF_TYPE]}",
|
||||
"serial_number": self._config_entry.data[CONF_SERIAL_NUMBER],
|
||||
}
|
||||
|
||||
return device_info
|
||||
|
|
|
@ -20,7 +20,6 @@ class ConnectDenonAVR:
|
|||
zone2: bool,
|
||||
zone3: bool,
|
||||
async_client_getter: Callable,
|
||||
entry_state: str | None = None,
|
||||
):
|
||||
"""Initialize the class."""
|
||||
self._async_client_getter = async_client_getter
|
||||
|
@ -28,7 +27,6 @@ class ConnectDenonAVR:
|
|||
self._host = host
|
||||
self._show_all_inputs = show_all_inputs
|
||||
self._timeout = timeout
|
||||
self._entry_state = entry_state
|
||||
|
||||
self._zones = {}
|
||||
if zone2:
|
||||
|
|
|
@ -479,7 +479,7 @@ defusedxml==0.6.0
|
|||
deluge-client==1.7.1
|
||||
|
||||
# homeassistant.components.denonavr
|
||||
denonavr==0.10.5
|
||||
denonavr==0.10.6
|
||||
|
||||
# homeassistant.components.devolo_home_control
|
||||
devolo-home-control-api==0.17.3
|
||||
|
|
|
@ -264,7 +264,7 @@ debugpy==1.2.1
|
|||
defusedxml==0.6.0
|
||||
|
||||
# homeassistant.components.denonavr
|
||||
denonavr==0.10.5
|
||||
denonavr==0.10.6
|
||||
|
||||
# homeassistant.components.devolo_home_control
|
||||
devolo-home-control-api==0.17.3
|
||||
|
|
Loading…
Reference in New Issue