use "id" key where id of input is stored instead of "input"

This commit is contained in:
iLLiCiTiT 2021-11-26 12:55:26 +01:00
parent aaca2400a4
commit c728eec8ab
2 changed files with 7 additions and 2 deletions

View file

@ -103,7 +103,7 @@ class IntegrateInputLinks(pyblish.api.ContextPlugin):
# future.
link = OrderedDict()
link["type"] = link_type
link["input"] = io.ObjectId(input_id)
link["id"] = io.ObjectId(input_id)
link["linkedBy"] = "publish"
if "inputLinks" not in version_doc["data"]: