mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Changed variable resolution
This commit is contained in:
parent
f03ae1bc15
commit
7d248880cc
1 changed files with 2 additions and 2 deletions
|
|
@ -161,9 +161,9 @@ def _convert_publish_plugins(overrides):
|
|||
def _convert_extract_thumbnail(overrides):
|
||||
"""ExtractThumbnail config settings did change to profiles."""
|
||||
extract_thumbnail_overrides = (
|
||||
overrides.get("publish", {}).get("ExtractThumbnail") or {}
|
||||
overrides.get("publish", {}).get("ExtractThumbnail")
|
||||
)
|
||||
if "profiles" in extract_thumbnail_overrides:
|
||||
if extract_thumbnail_overrides is None:
|
||||
return
|
||||
|
||||
base_value = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue