From 9bb91854431a35ac6062dae3426abbb32daf90ae Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Wed, 19 Dec 2012 20:44:23 +0100 Subject: [PATCH] controller: determine backend using the whole url, not just the path piece. #1118 --- SparkleShare/SparkleControllerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleControllerBase.cs b/SparkleShare/SparkleControllerBase.cs index 552543b6..b5a37444 100644 --- a/SparkleShare/SparkleControllerBase.cs +++ b/SparkleShare/SparkleControllerBase.cs @@ -676,7 +676,7 @@ namespace SparkleShare { } } - string backend = SparkleFetcherBase.GetBackend (this.fetcher.RemoteUrl.AbsolutePath); + string backend = SparkleFetcherBase.GetBackend (this.fetcher.RemoteUrl.ToString ()); this.config.AddFolder (target_folder_name, this.fetcher.Identifier, this.fetcher.RemoteUrl.ToString (), backend);