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:
authorBlueBlock <danb@pobox.com>2019-08-02 20:40:57 +0300
committerBlueBlock <danb@pobox.com>2019-08-02 20:40:57 +0300
commitca736c74ded70a3ca87d799ecd2863ad526a3efc (patch)
tree3e812e98e643fa5b05d722fd7501b021a8a1df3d /Duplicati/Library
parent4d06cc0db678a988921f43df3fc060fc6542f964 (diff)
update the backups stats also when a bcakup is cancelled
PostBackupVerification() was being skipped when a bcakup was cancelled. PostBackupVerification() will now be called.
Diffstat (limited to 'Duplicati/Library')
-rw-r--r--Duplicati/Library/Main/Operation/BackupHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Library/Main/Operation/BackupHandler.cs b/Duplicati/Library/Main/Operation/BackupHandler.cs
index 90d3a1c32..170f7c2e7 100644
--- a/Duplicati/Library/Main/Operation/BackupHandler.cs
+++ b/Duplicati/Library/Main/Operation/BackupHandler.cs
@@ -528,7 +528,7 @@ namespace Duplicati.Library.Main.Operation
m_transaction = null;
- if (m_result.TaskControlRendevouz() != TaskControlState.Stop)
+ if (m_result.TaskControlRendevouz() != TaskControlState.Abort)
{
if (m_options.NoBackendverification)
UpdateStorageStatsFromDatabase();