We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9525da2 commit 6d19c69Copy full SHA for 6d19c69
custom_components/db_infoscreen/config_flow.py
@@ -134,6 +134,11 @@ def __init__(self, config_entry):
134
135
async def async_step_init(self, user_input=None):
136
if user_input is not None:
137
+ # Process comma-separated via stations into list
138
+ via_raw = user_input.get(CONF_VIA_STATIONS, "")
139
+ user_input[CONF_VIA_STATIONS] = [
140
+ s.strip() for s in via_raw.split(",") if s.strip()
141
+ ]
142
return self.async_create_entry(title="", data=user_input)
143
144
return self.async_show_form(
0 commit comments