james-proxy / james

Web Debugging Proxy Application
1.42k stars 125 forks source link

Make query parameter display consistent #403

Open mitchhentges opened 5 years ago

mitchhentges commented 5 years ago

Since there is no official spec on how ?property=a&property=b&property[]=c&property[1]=d should be represented as query parameters, we shouldn't attempt to parse the parameters as a list. Instead, we should just list each property as-is:

property: a
property: b
property[]: c
property[1]: d

(original ticket)