From a180c3f813ddbe21e87aeae87d3cf6ced0ba242a Mon Sep 17 00:00:00 2001 From: Sean Vig Date: Sun, 12 Sep 2021 23:45:52 -0400 Subject: [PATCH] Fix polling on online Amcrest binary sensor (#56106) --- homeassistant/components/amcrest/binary_sensor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/amcrest/binary_sensor.py b/homeassistant/components/amcrest/binary_sensor.py index ebe19273b82..76fdcf100ae 100644 --- a/homeassistant/components/amcrest/binary_sensor.py +++ b/homeassistant/components/amcrest/binary_sensor.py @@ -111,6 +111,7 @@ BINARY_SENSORS: tuple[AmcrestSensorEntityDescription, ...] = ( key=_ONLINE_KEY, name="Online", device_class=DEVICE_CLASS_CONNECTIVITY, + should_poll=True, ), ) BINARY_SENSOR_KEYS = [description.key for description in BINARY_SENSORS]