From d51c9da59ca3b491af8845962d9712d9a20c14bc Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Mon, 24 Jan 2022 16:59:04 +0100 Subject: [PATCH] Fix - webpublisher from .psd used wrong value for task Subset name for color coded layer that should be published needs to use task name, not task type. --- .../hosts/photoshop/plugins/publish/collect_remote_instances.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/hosts/photoshop/plugins/publish/collect_remote_instances.py b/openpype/hosts/photoshop/plugins/publish/collect_remote_instances.py index e264d04d9f..3994048f7d 100644 --- a/openpype/hosts/photoshop/plugins/publish/collect_remote_instances.py +++ b/openpype/hosts/photoshop/plugins/publish/collect_remote_instances.py @@ -69,7 +69,7 @@ class CollectRemoteInstances(pyblish.api.ContextPlugin): instance.data["family"] = resolved_family instance.data["publish"] = layer.visible instance.data["asset"] = context.data["assetEntity"]["name"] - instance.data["task"] = context.data["taskType"] + instance.data["task"] = context.data["task"] fill_pairs = { "variant": variant,