controller: replace %20 with spaces in target folder name. #1137

This commit is contained in:
Hylke Bons 2013-01-07 17:52:23 +01:00
parent 8fd5974cad
commit 482696506b

View file

@ -645,6 +645,7 @@ namespace SparkleShare {
canonical_name = canonical_name.Replace ("-crypto", "");
canonical_name = canonical_name.Replace ("_", " ");
canonical_name = canonical_name.Replace ("%20", " ");
bool target_folder_exists = Directory.Exists (
Path.Combine (this.config.FoldersPath, canonical_name));