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
I'm having a problem with URLs not getting escaped correctly. I might have missed something, but it seems like it could be related to a recent change you made to the way you escape URLs: f149ba1#diff-e7632c024955e4a1dc429d3253cbe6bcR584
The smart_escape function used to escape URLs this way:
I have a case where the public_id is Snø_dfom5q. The new escape function produces Sn%F8_dfom5q, while the old, and in this case correct function, produces Sn%C3%B8_dfom5q.
I'm not an expert on URL escaping, so it's hard for me know your thinking behind your recent change and create a PR. But let me know if I can help in any way.
The text was updated successfully, but these errors were encountered:
Hi!
I'm having a problem with URLs not getting escaped correctly. I might have missed something, but it seems like it could be related to a recent change you made to the way you escape URLs: f149ba1#diff-e7632c024955e4a1dc429d3253cbe6bcR584
The
smart_escape
function used to escape URLs this way:Now, it escapes URLs this way:
I have a case where the
public_id
isSnø_dfom5q
. The new escape function producesSn%F8_dfom5q
, while the old, and in this case correct function, producesSn%C3%B8_dfom5q
.The complete URLs:
http://res.cloudinary.com/hanen/image/upload/Sn%F8_dfom5q.png
http://res.cloudinary.com/hanen/image/upload/Sn%C3%B8_dfom5q.png
If I try to open the new URL (the first one in the list above) I get the following error:
I'm not an expert on URL escaping, so it's hard for me know your thinking behind your recent change and create a PR. But let me know if I can help in any way.
The text was updated successfully, but these errors were encountered: