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:
authorverhoek <30193551+verhoek@users.noreply.github.com>2018-10-27 13:17:07 +0300
committerverhoek <30193551+verhoek@users.noreply.github.com>2018-10-27 13:17:07 +0300
commitbc053df294672e4d3e44541e99c9875fc879c845 (patch)
treeec5212e890dcb30a99028f1b182cc24fc4d0eb56 /Duplicati/Library/Backend/Backblaze/B2.cs
parent73f80a99edb7232592a61d43967685cb18a0ae60 (diff)
Moved basic IO helper functions to Library.IO.
Diffstat (limited to 'Duplicati/Library/Backend/Backblaze/B2.cs')
-rw-r--r--Duplicati/Library/Backend/Backblaze/B2.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Duplicati/Library/Backend/Backblaze/B2.cs b/Duplicati/Library/Backend/Backblaze/B2.cs
index e16062814..593aac30a 100644
--- a/Duplicati/Library/Backend/Backblaze/B2.cs
+++ b/Duplicati/Library/Backend/Backblaze/B2.cs
@@ -19,6 +19,7 @@ using System.Linq;
using System.Collections.Generic;
using Duplicati.Library.Utility;
using Duplicati.Library.Interface;
+using Duplicati.Library.IO;
using Newtonsoft.Json;
using System.Net;
@@ -56,7 +57,7 @@ namespace Duplicati.Library.Backend.Backblaze
var uri = new Utility.Uri(url);
m_bucketname = uri.Host;
- m_prefix = Duplicati.Library.Utility.Utility.AppendDirSeparator("/" + uri.Path, "/");
+ m_prefix = Util.AppendDirSeparator("/" + uri.Path, "/");
// For B2 we do not use a leading slash
while(m_prefix.StartsWith("/", StringComparison.Ordinal))