Details
-
Bug
-
Resolution: Obsolete
-
Neutral
-
None
-
2.0.6
-
None
Description
On line 249 the target path is created where the resource should me copied to in the dam workspace:
String targetPath = this.damUploadedRootNode.getPath() + "/" + parentPath;
However "parentPath" starts with a "/". This will therefore lead to a path with "//" in it. IMO it should be:
String targetPath = this.damUploadedRootNode.getPath() + parentPath;
Checklists
Acceptance criteria