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:
authorTopperDEL <github_com@tparth.de>2021-07-15 18:15:03 +0300
committerTopperDEL <github_com@tparth.de>2021-07-15 18:15:03 +0300
commit0981c66465f2619ec0d912ebe9bb218068ef220a (patch)
tree3817c7e7f2643c6a587fd462bd6f747f1dcff7b1 /Duplicati/Library/Backend/Storj/StorjConfig.cs
parent3ed7d4b1634c2c882ff86dea79177ec87089c8dc (diff)
feat: Create a copy of old Tardigrade-Backend with reuse of new Storj-Backend
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