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
When an image has spaces or special characters there is a difference in how the image handler is working depending on if the image does or doesn't have the image resizing parameters added.
Looking in to the code base the StripDimensions method within the BinaryFileManager does the following
// TSI-417: unescape and only escape spaces path = WebUtility.UrlDecode(path); path = path.Replace(" ", "%20");
But this is only ran when there are not any dimensions. If there are dimensions the path is returned before this is ran.
The text was updated successfully, but these errors were encountered:
When an image has spaces or special characters there is a difference in how the image handler is working depending on if the image does or doesn't have the image resizing parameters added.
Looking in to the code base the StripDimensions method within the BinaryFileManager does the following
// TSI-417: unescape and only escape spaces path = WebUtility.UrlDecode(path); path = path.Replace(" ", "%20");
But this is only ran when there are not any dimensions. If there are dimensions the path is returned before this is ran.
The text was updated successfully, but these errors were encountered: