Skip to content
Snippets Groups Projects
Commit 76a964c9 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Minor change to NodeInfo for supporting external links icon

parent c9bc5bac
Branches
Tags
No related merge requests found
Pipeline #7439 failed
...@@ -61,6 +61,9 @@ public class NodeInfo { ...@@ -61,6 +61,9 @@ public class NodeInfo {
String prefix = "vos://" + authority; String prefix = "vos://" + authority;
this.target = decodePath(((LinkNode) node).getTarget(), prefix); this.target = decodePath(((LinkNode) node).getTarget(), prefix);
this.type = linkedNode.getType(); this.type = linkedNode.getType();
} else if (node instanceof LinkNode) {
this.target = ((LinkNode) node).getTarget();
this.type = "vos:DataNode"; // data link
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment