mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #3183 from pypeclub/bugfix/ftrack_review_image_limitation_dev
Ftrack: Review image only if there are no mp4 reviews
This commit is contained in:
commit
d2f7c593ca
1 changed files with 4 additions and 1 deletions
|
|
@ -176,7 +176,10 @@ class IntegrateFtrackInstance(pyblish.api.InstancePlugin):
|
|||
# Add item to component list
|
||||
component_list.append(thumbnail_item)
|
||||
|
||||
if first_thumbnail_component is not None:
|
||||
if (
|
||||
not review_representations
|
||||
and first_thumbnail_component is not None
|
||||
):
|
||||
width = first_thumbnail_component_repre.get("width")
|
||||
height = first_thumbnail_component_repre.get("height")
|
||||
if not width or not height:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue