Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Sdl.Web.Tridion/Statics/BinaryFileManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,9 @@ internal static string StripDimensions(string path, out Dimensions dimensions)
{
dimensions.NoStretch = true;
}
return re.Replace(path, ".");

//Git Hub Issue #84
path = re.Replace(path, ".");
}

// TSI-417: unescape and only escape spaces
Expand Down