[log] Fix opening file names with spaces

This commit is contained in:
Hylke Bons 2011-02-07 20:32:29 +00:00
parent ba4dc3b073
commit 7df8b9c752

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