Skip to content
Snippets Groups Projects
Commit 8c133ffd authored by buczekp's avatar buczekp
Browse files

[LMS-1586] fixed bug with file name pattern usage

SVN: 20980
parent 172a9799
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ class DefaultFileBasedHierarchicalContent implements IHierarchicalContent
{
public boolean accept(IHierarchicalContentNode node)
{
return compiledPattern.matcher(node.getRelativePath()).matches();
return compiledPattern.matcher(node.getName()).matches();
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment