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:
authorKenneth Skovhede <kenneth@hexad.dk>2015-12-09 01:48:29 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2015-12-09 01:48:29 +0300
commitb1a2115fc7a3ed157734c14d07c7d1bcae5a0bab (patch)
tree04bf448d332ff7509b1491cdc58fd71f82cf576e
parent3320537d17294c9bfdf10a4900680df94b970f0b (diff)
Fixed a case where a backup save failed if a schedule was created
-rw-r--r--Duplicati/Server/Database/Connection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Server/Database/Connection.cs b/Duplicati/Server/Database/Connection.cs
index c2febdd59..2808f842e 100644
--- a/Duplicati/Server/Database/Connection.cs
+++ b/Duplicati/Server/Database/Connection.cs
@@ -518,7 +518,7 @@ namespace Duplicati.Server.Database
NormalizeDateTimeToEpochSeconds(n.Time),
n.Repeat,
NormalizeDateTimeToEpochSeconds(n.LastRun),
- n.Rule,
+ n.Rule ?? "",
update ? (object)item.ID : null
});