fix use of virtual nodetree

This commit is contained in:
Christophe Romain 2013-12-03 10:34:59 +01:00
parent 5ecd832e81
commit e11c835bd3
1 changed files with 5 additions and 1 deletions

View File

@ -119,7 +119,11 @@ get_nodes(_Host) -> [].
get_parentnodes(_Host, _Node, _From) -> [].
get_parentnodes_tree(_Host, _Node, _From) -> [].
get_parentnodes_tree(_Host, _Node, _From) ->
case get_node(Host, NodeId, From) of
Node when is_record(Node, pubsub_node) -> [{0, [Node]}];
_Error -> []
end.
get_subnodes(Host, Node, _From) ->
get_subnodes(Host, Node).