do not merge command array

This commit is contained in:
Muayyad alsadi
2022-03-18 18:29:27 +03:00
parent 105c27c8dc
commit 1be41b46a5
7 changed files with 17 additions and 8 deletions

View File

@ -1167,6 +1167,9 @@ def rec_merge_one(target, source):
if key not in source:
continue
value2 = source[key]
if key == "command":
target[key] = value2
continue
if not isinstance(value2, type(value)):
value_type = type(value)
value2_type = type(value2)