mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix workfile path validation for certain nodes that come with expression on string parms by default
This commit is contained in:
parent
ebb6475714
commit
c1995646d2
1 changed files with 6 additions and 0 deletions
|
|
@ -69,6 +69,12 @@ class ValidateWorkfilePaths(
|
|||
if param.node().type().name() not in cls.node_types:
|
||||
continue
|
||||
|
||||
if param.keyframes():
|
||||
# Calling `.unexpandedString()` below fails if param has
|
||||
# keyframes - so for now we will skip those params. These are
|
||||
# e.g. present in `filecache` nodes.
|
||||
continue
|
||||
|
||||
if any(
|
||||
v for v in cls.prohibited_vars
|
||||
if v in param.unexpandedString()):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue