Closed rwz closed 7 years ago
PostRank::URI.clean("http://example.com?foo=BAR%26BAZ") # => "http://example.com/?foo=BAR&BAZ"
As you can see, clean method has unescaped %26 code in the value and transformed a single key-value query pair into two keys and one value. Expected result would be http://example.com/?foo=BAR%26BAZ
%26
http://example.com/?foo=BAR%26BAZ
As you can see, clean method has unescaped
%26
code in the value and transformed a single key-value query pair into two keys and one value. Expected result would behttp://example.com/?foo=BAR%26BAZ