Fixes unencoded spaces in PreviewHttpPath for the FTP uploader.

This commit is contained in:
SolidX 2014-11-13 22:06:53 -05:00
parent 1072a23f01
commit 89be6588a1

View file

@ -231,7 +231,7 @@ public string GetUriPath(string filename, string subFolderPath = null)
}
httpHomeUri.Scheme = BrowserProtocol.GetDescription();
return httpHomeUri.Uri.ToString();
return Uri.EscapeUriString(httpHomeUri.Uri.ToString());
}
public string GetFtpPath(string filemame)