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

Minimal auth_method ordering fix

This commit is contained in:
Elias Rohrer 2016-03-10 17:46:15 +01:00
parent 15ee72138a
commit 8b03c0a385

View File

@ -408,7 +408,7 @@ maps_to_lists(IMap) ->
end, [], IMap). end, [], IMap).
merge_configs(Terms, ResMap) -> merge_configs(Terms, ResMap) ->
lists:foldl(fun({Name, Val}, Map) when is_list(Val) -> lists:foldl(fun({Name, Val}, Map) when is_list(Val), Name =/= auth_method ->
Old = maps:get(Name, Map, #{}), Old = maps:get(Name, Map, #{}),
New = lists:foldl(fun(SVal, OMap) -> New = lists:foldl(fun(SVal, OMap) ->
NVal = if Name == host_config orelse Name == append_host_config -> NVal = if Name == host_config orelse Name == append_host_config ->