XF 1.4 Image proxy in conversations

dethfire

Well-known member
My users are still getting frustrated by the image proxy.

I just had a user send me a conversation using this code

Code:
[IMG]https://impactsoftware.com/pf/npp public.png[/IMG]

And it was broken in the message. The file exists and is publicly accessible. It shows fine in the editor. Could the image proxy be choking on the space?
 
It is the space, which technically makes it an invalid URL. The correct URL:
Code:
https://impactsoftware.com/pf/npp%20public.png
Browsers may be slightly more lax with this than the proxy itself, though I was never able to generate the URL with the space in the browser. When copied, it always copied with the space encoded.
 
Top Bottom