1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 17:59:31 +02:00

Revert "Fix 'nodetree' configuration lookups for PEP"

This reverts commit 7ef8dfb4e0.

The config/3 function copes with the PEP case.
This commit is contained in:
Holger Weiss 2016-12-25 01:24:40 +01:00
parent 7ef8dfb4e0
commit df92d96d4f

View file

@ -3432,7 +3432,7 @@ serverhost(Host) ->
-spec tree(host()) -> atom(). -spec tree(host()) -> atom().
tree(Host) -> tree(Host) ->
case config(serverhost(Host), nodetree) of case config(Host, nodetree) of
undefined -> tree(Host, ?STDTREE); undefined -> tree(Host, ?STDTREE);
Tree -> Tree Tree -> Tree
end. end.