From a8d0013ba5111bf9fea7545886163700beab5138 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 24 Aug 2012 23:06:33 +0100 Subject: [PATCH] setup: allow for backslash in username address prefix. Closes #929 --- SparkleShare/SparkleSetupController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleSetupController.cs b/SparkleShare/SparkleSetupController.cs index 36deeefe..e0237a3b 100755 --- a/SparkleShare/SparkleSetupController.cs +++ b/SparkleShare/SparkleSetupController.cs @@ -345,7 +345,7 @@ namespace SparkleShare { ChangePageEvent (PageType.Syncing, null); - address = address.Trim (); + address = Uri.EscapeUriString (address.Trim ()); remote_path = remote_path.Trim (); remote_path = remote_path.TrimEnd ("/".ToCharArray ());