You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Syncing DAM Assets I came across an issue when Grabbit throws an exception meeting '$' sign in a node name.
Code with issue:
/src/main/groovy/com/twcable/grabbit/jcr/DefaultProtoNodeDecorator.groovy Line 58: createFrom(childNode, childNode.getName().replaceFirst(Pattern.quote(innerProtoNode.name), getName())).writeToJcr(session)
when getName() returns a node name with '$' sign in it, replaceFirst treats it as a capturing group reference in the replacement string and throws an exception
The text was updated successfully, but these errors were encountered:
Syncing DAM Assets I came across an issue when Grabbit throws an exception meeting '$' sign in a node name.
Code with issue:
/src/main/groovy/com/twcable/grabbit/jcr/DefaultProtoNodeDecorator.groovy
Line 58: createFrom(childNode, childNode.getName().replaceFirst(Pattern.quote(innerProtoNode.name), getName())).writeToJcr(session)
when getName() returns a node name with '$' sign in it, replaceFirst treats it as a capturing group reference in the replacement string and throws an exception
The text was updated successfully, but these errors were encountered: