mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-06-05 12:30:28 +02:00
Fix config merging with null (#3113)
This commit is contained in:
@@ -39,6 +39,8 @@ def merge_config(full_old, full_new):
|
|||||||
if not isinstance(old, list):
|
if not isinstance(old, list):
|
||||||
return new
|
return new
|
||||||
return old + new
|
return old + new
|
||||||
|
elif new is None:
|
||||||
|
return old
|
||||||
|
|
||||||
return new
|
return new
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user