1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

fix group_by_keys

when there are more than 2 values that have the same key,
group_by_keys misbehave and produce something like
`%{list: [["a", "b"], "c"]}`
This commit is contained in:
Po Chen 2016-09-07 22:52:20 +10:00 committed by GitHub
parent e53c1a217e
commit 5eac963625

View file

@ -24,7 +24,7 @@ defmodule HTTParrot.GeneralRequestInfo do
|> Enum.map(fn {k, v} -> %{k => v} end)
|> Enum.reduce(fn m, acc ->
Map.merge(m, acc, fn _k, v1, v2 ->
[v2, v1]
List.wrap(v2) ++ List.wrap(v1)
end)
end)
end