mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Fixed Thethingsnetwork sensor issue so that it takes the most recent (last) item from the TTN data storage query result instead of the first. (#20790)
* Fixed Thethingsnetwork sensor issue so that it takes the most recent (last) item from the TTN data storage query result instead of the first. * Update sensor.py More pythonic way to get the last item of the sensor value list.
This commit is contained in:
committed by
Fabian Affolter
parent
5df02f3a78
commit
203a6fd349
@@ -153,7 +153,7 @@ class TtnDataStorage:
|
||||
return False
|
||||
|
||||
data = await req.json()
|
||||
self.data = data[0]
|
||||
self.data = data[-1]
|
||||
|
||||
for value in self._values.items():
|
||||
if value[0] not in self.data.keys():
|
||||
|
Reference in New Issue
Block a user