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-05-06 21:14:53 +0300
committerGitHub <noreply@github.com>2021-05-06 21:14:53 +0300
commit3ed7d4b1634c2c882ff86dea79177ec87089c8dc (patch)
tree06ef7167b0e06ace473f1e16a4cc082910fa78cc /Duplicati/Library/Backend
parent4992cc2ed8ff6840a72eb38d2fc20a4cdeafa4c8 (diff)
fix: Typo
Diffstat (limited to 'Duplicati/Library/Backend')
-rw-r--r--Duplicati/Library/Backend/Storj/StorjBackend.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Library/Backend/Storj/StorjBackend.cs b/Duplicati/Library/Backend/Storj/StorjBackend.cs
index cfd361bc9..8cc80caca 100644
--- a/Duplicati/Library/Backend/Storj/StorjBackend.cs
+++ b/Duplicati/Library/Backend/Storj/StorjBackend.cs
@@ -145,7 +145,7 @@ namespace Duplicati.Library.Backend.Tardigrade
if (options.ContainsKey(TARDIGRADE_FOLDER) || options.ContainsKey(STORJ_FOLDER))
{
options.TryGetValue(STORJ_FOLDER, out _folder);
- if (string.IsNullOrEmpty(_bucket))
+ if (string.IsNullOrEmpty(_folder))
_folder = options[TARDIGRADE_FOLDER];
}
}