Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian committed Nov 10, 2019
2 parents b382826 + aa47537 commit 8f8ea9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Input.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function post_from_request!(request::HTTP.Request, input::HttpInput)
end

function post_url_encoded!(http_data::Array{UInt8, 1}, post_data::HttpPostData)
params::Dict{String,String} = query_params(String(http_data))
params::Dict{String,String} = URIParser.query_params(String(http_data))

for (key::String, value::String) in params
post_data[key] = value
Expand Down

2 comments on commit 8f8ea9d

@essenciary
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/5260

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.20.0 -m "<description of version>" 8f8ea9d68aa8fdf277640eadb0171aed7c597be5
git push origin v0.20.0

Please sign in to comment.