Description
The current implementation of the UrlRenderer appends a slash at the end of the full rendered URL. This causes invalid URLs if there is query parameter value which let the full URL matching the condition in line 294.
Example of calling "renderRelativeUrl"
before: ./path/?param=value..
after: ./path/?param=value../
I think the condition and conversion of the URL should affect only the path, like this:
before: ./path/..?param=value..
after: ./path/../?param=value..
Attachments
Issue Links
- links to