Merge pull request #371 from SolidX/bug-364

Fixes unencoded spaces in PreviewHttpPath for the FTP uploader.
This commit is contained in:
Jaex 2014-11-14 05:44:24 +02:00
commit 83f9bb82bb

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)