Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2314 from pypeclub/bugfix/input_links_key_typo
Browse files Browse the repository at this point in the history
InputLinks: Typo in "inputLinks" key
  • Loading branch information
iLLiCiTiT authored Nov 26, 2021
2 parents 31f6397 + 3d4be3b commit 6124d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/lib/avalon_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def get_linked_asset_ids(asset_doc):
if not asset_doc:
return output

input_links = asset_doc["data"].get("inputsLinks") or []
input_links = asset_doc["data"].get("inputLinks") or []
if input_links:
output = [item["_id"] for item in input_links]
return output
Expand Down

0 comments on commit 6124d5b

Please sign in to comment.