mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 23:18:10 +01:00
Fix #1908 mutating input parameter
This commit is contained in:
parent
86710ed483
commit
92bbedfa5a
1 changed files with 1 additions and 0 deletions
|
@ -169,6 +169,7 @@ def _validate(config):
|
|||
config[CONF_NETWORKS] = cv.ensure_list(WIFI_NETWORK_STA)(network)
|
||||
|
||||
if (CONF_NETWORKS not in config) and (CONF_AP not in config):
|
||||
config = config.copy()
|
||||
config[CONF_NETWORKS] = []
|
||||
|
||||
if config.get(CONF_FAST_CONNECT, False):
|
||||
|
|
Loading…
Reference in a new issue