From a676072e0d80acf7e34a179554e7803c8dbe3adb Mon Sep 17 00:00:00 2001 From: Jan Bouwhuis Date: Sun, 31 May 2026 12:03:12 +0200 Subject: [PATCH] Fix MQTT device_tracker not saving state on location accuracy changes (#172629) --- homeassistant/components/mqtt/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/mqtt/entity.py b/homeassistant/components/mqtt/entity.py index d647e3bd84e2..7915e336b522 100644 --- a/homeassistant/components/mqtt/entity.py +++ b/homeassistant/components/mqtt/entity.py @@ -530,7 +530,7 @@ class MqttAttributesMixin(Entity): self._attributes_message_received, { "_attr_extra_state_attributes", - "_attr_gps_accuracy", + "_attr_location_accuracy", "_attr_latitude", "_attr_location_name", "_attr_longitude",