Skip to content
Snippets Groups Projects
Unverified Commit e8142987 authored by starkillerOG's avatar starkillerOG Committed by GitHub
Browse files

Reolink config flow fix custom port when USE_HTTPS not selected (#91137)

give USE_HTTPS a default
parent 86fe0c96
No related branches found
No related tags found
No related merge requests found
...@@ -178,7 +178,7 @@ class ReolinkFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): ...@@ -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,
} }
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment