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:
Diffstat (limited to 'Duplicati/Library/Backend/Storj/StorjConfig.cs')
-rw-r--r--Duplicati/Library/Backend/Storj/StorjConfig.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Duplicati/Library/Backend/Storj/StorjConfig.cs b/Duplicati/Library/Backend/Storj/StorjConfig.cs
index 5fea0da2d..7b449645f 100644
--- a/Duplicati/Library/Backend/Storj/StorjConfig.cs
+++ b/Duplicati/Library/Backend/Storj/StorjConfig.cs
@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace Duplicati.Library.Backend.Tardigrade
+namespace Duplicati.Library.Backend.Storj
{
public class StorjConfig : IWebModule
{
@@ -56,11 +56,11 @@ namespace Duplicati.Library.Backend.Tardigrade
switch (ct)
{
case ConfigType.Satellites:
- return Tardigrade.KNOWN_STORJ_SATELLITES;
+ return Storj.KNOWN_STORJ_SATELLITES;
case ConfigType.AuthenticationMethods:
- return Tardigrade.KNOWN_AUTHENTICATION_METHODS;
+ return Storj.KNOWN_AUTHENTICATION_METHODS;
default:
- return Tardigrade.KNOWN_STORJ_SATELLITES;
+ return Storj.KNOWN_STORJ_SATELLITES;
}
}
#endregion