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/Sia/Sia.cs')
-rw-r--r--Duplicati/Library/Backend/Sia/Sia.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Duplicati/Library/Backend/Sia/Sia.cs b/Duplicati/Library/Backend/Sia/Sia.cs
index e788cb209..2576bdd0a 100644
--- a/Duplicati/Library/Backend/Sia/Sia.cs
+++ b/Duplicati/Library/Backend/Sia/Sia.cs
@@ -135,7 +135,7 @@ namespace Duplicati.Library.Backend.Sia
private SiaFileList GetFiles()
{
var fl = new SiaFileList();
- string endpoint = string.Format("/renter/files");
+ string endpoint = "/renter/files";
try
{
@@ -189,7 +189,7 @@ namespace Duplicati.Library.Backend.Sia
private SiaDownloadList GetDownloads()
{
var fl = new SiaDownloadList();
- string endpoint = string.Format("/renter/downloads");
+ string endpoint = "/renter/downloads";
try
{