Skip to content

Commit

Permalink
Add a clause to yaws_api:url_encode to handle deep lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Faulet committed Jan 3, 2013
1 parent bb5124b commit 0a2e565
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/yaws_api.erl
Expand Up @@ -838,6 +838,8 @@ url_decode_q_split([], Ack) ->



url_encode([H|T]) when is_list(H) ->
[url_encode(H) | url_encode(T)];
url_encode([H|T]) ->
if
H >= $a, $z >= H ->
Expand Down

0 comments on commit 0a2e565

Please sign in to comment.