don't convert GTFS timestamp to UTC in timestamp sensor (#61221)
This commit is contained in:
parent
a81026ea90
commit
c8fbf4c339
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue