[log] Fix opening file names with spaces

This commit is contained in:
Hylke Bons 2011-02-07 20:32:29 +00:00
parent e5ad0acee1
commit 2e56deb237

View file

@ -165,7 +165,7 @@ namespace SparkleShare {
{
string file_path = request.Url.ToString ();
file_path = file_path.Replace ("%20", "\\ ");
file_path = file_path.Replace ("%20", " ");
NSWorkspace.SharedWorkspace.OpenFile (file_path);