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
(Note the space in the end that is part of the last query parameter.)
I tried using your library to clean up this URL before feeding it to URI in order to prevent it crashing the parsing in URI, but unfortunately that doesn't work. It still produces a URL that is not parseable by the URI class.
In good news, calling toJavaURI() and then doing toString()seems to work!
(I know the conversion URI -> String -> URI sounds stupid, but for reasons I need an URI to feed in a library.)
The text was updated successfully, but these errors were encountered:
Example of problematic url:
(Note the space in the end that is part of the last query parameter.)
I tried using your library to clean up this URL before feeding it to URI in order to prevent it crashing the parsing in URI, but unfortunately that doesn't work. It still produces a URL that is not parseable by the URI class.
In good news, calling
toJavaURI()
and then doingtoString()
seems to work!(I know the conversion URI -> String -> URI sounds stupid, but for reasons I need an URI to feed in a library.)
The text was updated successfully, but these errors were encountered: