- Fix missing '/'' to paths

This commit is contained in:
Maschell 2020-12-20 11:23:16 +01:00
parent e8c8888ff9
commit fc52aae983

View File

@ -73,7 +73,7 @@ public abstract class NodeEntry {
public String getPath() {
if (parent != null) {
return parent.getFullPath();
return parent.getFullPath() + "/";
}
return "/";
}