JuliaWeb / HTTP.jl

HTTP for Julia
https://juliaweb.github.io/HTTP.jl/stable/
Other
626 stars 177 forks source link

Fix Handlers.getcookies erroring #1119

Closed nguiard closed 9 months ago

nguiard commented 9 months ago

Hi!

Presently if you do HTTP.getcookies(req), you get: ERROR: MethodError: no method matching get(::Pair{Tuple{}, Vector{HTTP.Cookies.Cookie}}, ::Dict{Symbol, Any}, ::Symbol)

This is because the definition of getcookies contained () => Cookie[] instead of () -> Cookie[].

This PR fixes the error and proposes a basic test to verify that we can call getcookies on a request without an error.