Do not turn on denonavr receiver when changing the source (#110964)

This commit is contained in:
Oliver 2024-02-19 20:33:48 +01:00 committed by GitHub
parent f4fd3633b4
commit 3e5329d463
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -451,9 +451,6 @@ class DenonDevice(MediaPlayerEntity):
@async_log_errors
async def async_select_source(self, source: str) -> None:
"""Select input source."""
# Ensure that the AVR is turned on, which is necessary for input
# switch to work.
await self.async_turn_on()
await self._receiver.async_set_input_func(source)
@async_log_errors