diff --git a/homeassistant/components/squeezebox/binary_sensor.py b/homeassistant/components/squeezebox/binary_sensor.py index 195669dbca4..b302b689e4e 100644 --- a/homeassistant/components/squeezebox/binary_sensor.py +++ b/homeassistant/components/squeezebox/binary_sensor.py @@ -54,6 +54,7 @@ class ServerStatusBinarySensor(LMSStatusEntity, BinarySensorEntity): ) -> None: """Initialize the sensor.""" super().__init__(coordinator, description) + # needs to be set as auto update is off self._attr_is_on = coordinator.data[description.key] @callback