mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 17:27:10 +00:00
don't convert GTFS timestamp to UTC in timestamp sensor (#61221)
This commit is contained in:
parent
a81026ea90
commit
c8fbf4c339
@ -619,7 +619,7 @@ class GTFSDepartureSensor(SensorEntity):
|
||||
if not self._departure:
|
||||
self._state = None
|
||||
else:
|
||||
self._state = dt_util.as_utc(self._departure["departure_time"])
|
||||
self._state = self._departure["departure_time"]
|
||||
|
||||
# Fetch trip and route details once, unless updated
|
||||
if not self._departure:
|
||||
|
Loading…
x
Reference in New Issue
Block a user