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:
authorGuillaume <ltGuillaume@users.noreply.github.com>2021-12-15 22:08:37 +0300
committerGitHub <noreply@github.com>2021-12-15 22:08:37 +0300
commit87cc4ad22664440e4c72b8bbb81b356c1ca54c12 (patch)
treefe4e7516b572b970f9827f7bafa82c7073d65819 /Duplicati/Server/webroot
parenta4a02ff884d59a964a0a9d9cdc3945db0560c8e6 (diff)
Don't explicitly call reload() in BackupList
serverstatechanged.lastDataUpdateId is already triggered, so reload() was called twice.
Diffstat (limited to 'Duplicati/Server/webroot')
-rw-r--r--Duplicati/Server/webroot/ngax/scripts/services/BackupList.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/Duplicati/Server/webroot/ngax/scripts/services/BackupList.js b/Duplicati/Server/webroot/ngax/scripts/services/BackupList.js
index 973851da5..3c3fac513 100644
--- a/Duplicati/Server/webroot/ngax/scripts/services/BackupList.js
+++ b/Duplicati/Server/webroot/ngax/scripts/services/BackupList.js
@@ -54,6 +54,4 @@ backupApp.service('BackupList', function($rootScope, $timeout, AppService, AppUt
$rootScope.$on('serverstatechanged.lastDataUpdateId', reload);
$rootScope.$on('serverstatechanged.proposedSchedule', updateNextRunStamp);
-
- reload();
});