Retain Jellyfin config flow input on connection issue (#121618)

This commit is contained in:
Jan Stienstra
2024-07-10 23:54:02 +02:00
committed by GitHub
parent 61111f5d71
commit 2fce71ea52

View File

@@ -97,7 +97,11 @@ class JellyfinConfigFlow(ConfigFlow, domain=DOMAIN):
)
return self.async_show_form(
step_id="user", data_schema=STEP_USER_DATA_SCHEMA, errors=errors
step_id="user",
data_schema=self.add_suggested_values_to_schema(
STEP_USER_DATA_SCHEMA, user_input
),
errors=errors,
)
async def async_step_reauth(