mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Force PEP parent node to be []
SVN Revision: 1144
This commit is contained in:
parent
b3bf437dd1
commit
04eb1c6641
@ -144,11 +144,15 @@ create_node(Key, Node, Type, Owner, Options) ->
|
||||
{[], true};
|
||||
_ ->
|
||||
Parent = lists:sublist(Node, length(Node) - 1),
|
||||
(Parent == []) orelse
|
||||
case Parent of
|
||||
[] ->
|
||||
{[], true};
|
||||
_ ->
|
||||
case mnesia:read({pubsub_node, {Key, Parent}}) of
|
||||
[] -> {Parent, false};
|
||||
_ -> {Parent, true}
|
||||
end
|
||||
end
|
||||
end,
|
||||
case ParentExists of
|
||||
true ->
|
||||
|
Loading…
Reference in New Issue
Block a user