From a37cca790228a2c210fb0fc9e883f964bc792553 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Fri, 4 Mar 2022 18:11:28 +0100 Subject: [PATCH] Fix missing get_tracker_beacon_by_tracker_id --- custom_components/georide/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/georide/__init__.py b/custom_components/georide/__init__.py index 874d653..9c06002 100644 --- a/custom_components/georide/__init__.py +++ b/custom_components/georide/__init__.py @@ -300,7 +300,7 @@ class GeoRideContext: "coordinator": coordinator } if tracker.version > 2: - tracker_beacon = await get_tracker_beacon_by_tracker_id(tracker.tracker_id) + tracker_beacon = await self.get_tracker_beacon_by_tracker_id(tracker.tracker_id) beacon_coordinator = DataUpdateCoordinator[Mapping[str, Any]]( hass, _LOGGER,