mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix ftrack json parse
This commit is contained in:
parent
0d20e27cb3
commit
c91b495100
1 changed files with 2 additions and 1 deletions
|
|
@ -40,7 +40,8 @@ class IntegrateFtrackNote(pyblish.api.InstancePlugin):
|
|||
if not config:
|
||||
return
|
||||
|
||||
items = config.get("data")
|
||||
configuration = json.loads(config)
|
||||
items = configuration.get("data")
|
||||
if not items:
|
||||
return
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue