Reolink config flow fix custom port when USE_HTTPS not selected (#91137)
give USE_HTTPS a default
This commit is contained in:
parent
86fe0c9683
commit
e8142987a7
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue