Should be 'path' not URL

This commit is contained in:
Xeross 2012-04-18 11:58:58 +02:00
parent 1dd617648a
commit 5549ccfdbd

View file

@ -214,7 +214,7 @@ namespace SparkleShare {
{
Process process = new Process ();
process.StartInfo.FileName = "xdg-open";
process.StartInfo.Arguments = "\"" + url + "\"";
process.StartInfo.Arguments = "\"" + path + "\"";
process.Start ();
}
}