mirror of
https://github.com/home-assistant/core.git
synced 2025-07-10 06:47:09 +00:00
Reolink config flow fix custom port when USE_HTTPS not selected (#91137)
give USE_HTTPS a default
This commit is contained in:
parent
2db8d70c2f
commit
30d615f206
@ -178,7 +178,7 @@ class ReolinkFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
data_schema = data_schema.extend(
|
data_schema = data_schema.extend(
|
||||||
{
|
{
|
||||||
vol.Optional(CONF_PORT): cv.positive_int,
|
vol.Optional(CONF_PORT): cv.positive_int,
|
||||||
vol.Optional(CONF_USE_HTTPS): bool,
|
vol.Required(CONF_USE_HTTPS, default=False): bool,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user