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:
parent
e53c1a217e
commit
5eac963625
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue