setup controller: fix wrong path being created

This commit is contained in:
Hylke Bons 2011-07-25 02:25:18 +01:00
parent f7c14f8120
commit b326c85638
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ namespace SparkleLib {
{
remote_folder = remote_folder.Trim ("/".ToCharArray ());
if (server.StartsWith("http")) {
if (server.StartsWith ("http")) {
base.target_folder = target_folder;
base.remote_url = server;
return;

View file

@ -121,7 +121,7 @@ namespace SparkleShare {
this.syncing_folder = "";
};
SparkleShare.Controller.FetchFolder (server, this.syncing_folder);
SparkleShare.Controller.FetchFolder (server, folder_name);
}