Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2016-09-01 12:38:54 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-09-01 12:38:54 +0300
commit5e90086af9dc47ded4294b6d38768400cd3449bb (patch)
tree8553d0bbccd4c6169a58c156881628a8067d9786
parentf815dcb958cece955dd2056a335e226f8c908447 (diff)
parented43742c2fa1eef2db9b34ede6a12f6c29c40dc1 (diff)
Merge branch 'feature/fix_plussigns_in_path_from_ui'
-rw-r--r--Duplicati/Server/WebServer/RESTMethods/Backup.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Server/WebServer/RESTMethods/Backup.cs b/Duplicati/Server/WebServer/RESTMethods/Backup.cs
index c69882539..ffce432b4 100644
--- a/Duplicati/Server/WebServer/RESTMethods/Backup.cs
+++ b/Duplicati/Server/WebServer/RESTMethods/Backup.cs
@@ -41,7 +41,7 @@ namespace Duplicati.Server.WebServer.RESTMethods
private void SearchFiles(IBackup backup, string filterstring, RequestInfo info)
{
- var filter = Library.Utility.Uri.UrlDecode(filterstring ?? "").Split(new string[] { System.IO.Path.PathSeparator.ToString() }, StringSplitOptions.RemoveEmptyEntries);
+ var filter = filterstring.Split(new string[] { System.IO.Path.PathSeparator.ToString() }, StringSplitOptions.RemoveEmptyEntries);
var timestring = info.Request.QueryString["time"].Value;
var allversion = Duplicati.Library.Utility.Utility.ParseBool(info.Request.QueryString["all-versions"].Value, false);