mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix ftrack ignore sync filter (#5176)
This commit is contained in:
parent
97f3bdf5ec
commit
ecc152ffe1
1 changed files with 1 additions and 1 deletions
|
|
@ -890,7 +890,7 @@ class SyncEntitiesFactory:
|
|||
else:
|
||||
parent_dict = self.entities_dict.get(parent_id, {})
|
||||
|
||||
for child_id in parent_dict.get("children", []):
|
||||
for child_id in list(parent_dict.get("children", [])):
|
||||
# keep original `remove` value for all children
|
||||
_remove = (remove is True)
|
||||
if not _remove:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue