24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00

Fix 'nodetree' configuration lookups for PEP

This commit is contained in:
Holger Weiss 2016-12-25 00:58:20 +01:00
parent b30b70db70
commit 7ef8dfb4e0

View File

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