mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fixing missing families in loader plugin procedure
merging https://github.com/ynput/ayon-core/pull/589
This commit is contained in:
parent
e483f14a4d
commit
213742c877
1 changed files with 2 additions and 1 deletions
|
|
@ -550,7 +550,8 @@ class ClipLoader:
|
|||
log.debug("__ self.timeline_out: {}".format(self.timeline_out))
|
||||
|
||||
# check if slate is included
|
||||
slate_on = "slate" in self.context["version"]["data"]["families"]
|
||||
slate_on = "slate" in self.context["version"]["data"].get(
|
||||
"families", [])
|
||||
log.debug("__ slate_on: {}".format(slate_on))
|
||||
|
||||
# if slate is on then remove the slate frame from beginning
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue