mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #473 from pypeclub/bugfix/publishing-review-ignoring
Review on instance.data
This commit is contained in:
commit
080c24ae6c
2 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
|
|||
return
|
||||
|
||||
# Skip review when requested.
|
||||
if not instance.data.get("review"):
|
||||
if not instance.data.get("review", True):
|
||||
return
|
||||
|
||||
# get representation and loop them
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
|
||||
def process(self, instance):
|
||||
# Skip review when requested.
|
||||
if not instance.data.get("review"):
|
||||
if not instance.data.get("review", True):
|
||||
return
|
||||
|
||||
# ffmpeg doesn't support multipart exrs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue