From 5549ccfdbd4f288881afffcb00953cc5fc876652 Mon Sep 17 00:00:00 2001 From: Xeross Date: Wed, 18 Apr 2012 11:58:58 +0200 Subject: [PATCH] Should be 'path' not URL --- SparkleShare/Linux/SparkleController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/Linux/SparkleController.cs b/SparkleShare/Linux/SparkleController.cs index fddc4490..9e13b5d2 100755 --- a/SparkleShare/Linux/SparkleController.cs +++ b/SparkleShare/Linux/SparkleController.cs @@ -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 (); } }