[log] Fix opening file names with spaces

This commit is contained in:
Hylke Bons 2011-02-07 20:32:29 +00:00
parent 64d765bce6
commit 758d9e68fd

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);