Skip to content

Commit

Permalink
make sure collect instances from create context does not error during…
Browse files Browse the repository at this point in the history
… refresh and publish
  • Loading branch information
moonyuet committed Aug 29, 2024
1 parent 555ea83 commit a5df2f8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions client/ayon_unreal/api/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ def _default_collect_instances(self):
instance.get('publish_attributes', '{}'))
instance['members'] = ast.literal_eval(
instance.get('members', '[]'))
instance['families'] = ast.literal_eval(
instance.get('families', '[]'))
instance['active'] = ast.literal_eval(
instance.get('active', ''))
created_instance = CreatedInstance.from_existing(instance, self)
self._add_instance_to_context(created_instance)

Expand Down

0 comments on commit a5df2f8

Please sign in to comment.