conditional dict does not care about paths as it must be group

This commit is contained in:
iLLiCiTiT 2021-08-10 12:17:17 +02:00
parent 5541b3fd0c
commit eaa1499510

View file

@ -468,13 +468,7 @@ class DictConditionalEntity(ItemEntity):
output = {}
for key, child_obj in children_items:
child_value = child_obj.settings_value()
if not child_obj.is_file and child_obj.file_item is None:
for _key, _value in child_value.items():
new_key = "/".join([key, _key])
output[new_key] = _value
else:
output[key] = child_value
output[key] = child_obj.settings_value()
return output
if self.is_group: