mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 23:27:37 +00:00
Fix options-flow in hvv_departures (#102484)
This commit is contained in:
parent
1621310ba7
commit
af264c6e0d
@ -150,7 +150,10 @@ class OptionsFlowHandler(config_entries.OptionsFlow):
|
|||||||
try:
|
try:
|
||||||
departure_list = await hub.gti.departureList(
|
departure_list = await hub.gti.departureList(
|
||||||
{
|
{
|
||||||
"station": self.config_entry.data[CONF_STATION],
|
"station": {
|
||||||
|
"type": "STATION",
|
||||||
|
"id": self.config_entry.data[CONF_STATION].get("id"),
|
||||||
|
},
|
||||||
"time": {"date": "heute", "time": "jetzt"},
|
"time": {"date": "heute", "time": "jetzt"},
|
||||||
"maxList": 5,
|
"maxList": 5,
|
||||||
"maxTimeOffset": 200,
|
"maxTimeOffset": 200,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user