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
Describe the bug
zio.http.internal.OutputEncoder does not correctly encode '&' char.
It encodes it as & instead of & (missing ';' char).
This causes url's in href attributes to get garbled.
Describe the bug
zio.http.internal.OutputEncoder does not correctly encode '&' char.
It encodes it as
&
instead of&
(missing ';' char).This causes url's in href attributes to get garbled.
To Reproduce
render a zio template containing:
this renders the href like:
href = "http://www.myservice.com?param1=v1&param2=v2"
(missing ';' at the end of '&')
Expected behaviour
html code showing the href rendered like:
href = "http://www.myservice.com?param1=v1&param2=v2"
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
Any
Additional context
None
The text was updated successfully, but these errors were encountered: