From 0ee5a9ad12b6721764b7aeb3bd6e81bc632201f8 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Fri, 4 Mar 2022 19:46:09 +0100 Subject: [PATCH] Fix tracker device not exti --- custom_components/georide/binary_sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/georide/binary_sensor.py b/custom_components/georide/binary_sensor.py index 148ae66..5e1b806 100644 --- a/custom_components/georide/binary_sensor.py +++ b/custom_components/georide/binary_sensor.py @@ -84,7 +84,7 @@ class GeoRideBeaconBinarySensorEntity(CoordinatorEntity, BinarySensorEntity): @property def device_info(self): """Return the device info.""" - return self._tracker_device.device_info + return self._tracker_device_beacon.device_info class GeoRideStolenBinarySensorEntity(GeoRideBinarySensorEntity): """Represent a tracked device."""