diff --git a/homeassistant/components/camera/__init__.py b/homeassistant/components/camera/__init__.py index 364c63c2c5fd..fb7de2d8ebd2 100644 --- a/homeassistant/components/camera/__init__.py +++ b/homeassistant/components/camera/__init__.py @@ -760,12 +760,12 @@ class Camera(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_): return CameraCapabilities(frontend_stream_types) @callback - def async_write_ha_state(self) -> None: + def _async_write_ha_state(self) -> None: """Write the state to the state machine. Schedules async_refresh_providers if support of streams have changed. """ - super().async_write_ha_state() + super()._async_write_ha_state() if self.__supports_stream != ( supports_stream := self.supported_features & CameraEntityFeature.STREAM ):