You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kerodon will wrongly reuse the query string resulting in a request path of /myform?email=hi&email=hello. This is inconsistent with the behaviour I see in my browser (latest chrome). Kerodon is also wrong according to specifications mentioned here [1].
This problem surfaces when the parameters are parsed with ring.middleware.params/wrap-params this results in {"email" ["hi" "hello"]} instead of {"email" "hello"}.
It seems that #45, from 2016, is claiming the opposite. Not sure where this is coming from, the link and specification I was referring to is already from 2009.
@ayato-p do you happen to remember your particular situation?
When we
(press "save")
on this form:Kerodon will wrongly reuse the query string resulting in a request path of
/myform?email=hi&email=hello
. This is inconsistent with the behaviour I see in my browser (latest chrome). Kerodon is also wrong according to specifications mentioned here [1].This problem surfaces when the parameters are parsed with
ring.middleware.params/wrap-params
this results in{"email" ["hi" "hello"]}
instead of{"email" "hello"}
.[1] https://stackoverflow.com/questions/1116019/when-submitting-a-get-form-the-query-string-is-removed-from-the-action-url/9882750#9882750
The text was updated successfully, but these errors were encountered: