Minimal auth_method ordering fix

This commit is contained in:
Elias Rohrer 2016-03-10 17:46:15 +01:00
parent 15ee72138a
commit 8b03c0a385
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ maps_to_lists(IMap) ->
end, [], IMap).
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, #{}),
New = lists:foldl(fun(SVal, OMap) ->
NVal = if Name == host_config orelse Name == append_host_config ->