mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
Merge pull request #159 from BigRoy/master
Also ignore _UNKNOWN_REF_NODE_1, or other variations
This commit is contained in:
commit
6d6898030d
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ class ReferenceLoader(api.Loader):
|
|||
continue
|
||||
|
||||
# Ignore _UNKNOWN_REF_NODE_ (PLN-160)
|
||||
if ref.endswith("_UNKNOWN_REF_NODE_"):
|
||||
if ref.rsplit(":", 1)[-1].startswith("_UNKNOWN_REF_NODE_"):
|
||||
continue
|
||||
|
||||
references.add(ref)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue