Merge pull request #453 from Kouga-/master

Fix issue #436
This commit is contained in:
Jaex 2015-01-14 20:04:03 +02:00
commit f17ba41365

View file

@ -176,6 +176,7 @@ public string GetUriPath(string filename, string subFolderPath = null)
}
UriBuilder httpHomeUri;
var httpHomePath = GetHttpHomePath();
if (string.IsNullOrEmpty(httpHomePath))
@ -230,7 +231,7 @@ public string GetUriPath(string filename, string subFolderPath = null)
}
httpHomeUri.Scheme = BrowserProtocol.GetDescription();
return Uri.EscapeUriString(httpHomeUri.Uri.ToString());
return httpHomeUri.Uri.AbsoluteUri;
}
public string GetFtpPath(string filemame)