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>2020-09-23 12:10:51 +0300
committerGitHub <noreply@github.com>2020-09-23 12:10:51 +0300
commitc040892abbe073fceb4b5f99d968e6fb2ec382a3 (patch)
treedf441b133dc0d6ee6913d268fb59f528a22d1250 /Duplicati/Server
parent072be642d1ccf33aa29ec0357ad3cf517e4cb075 (diff)
parent4008736494a84bf3482a084a9e314dc638f15826 (diff)
Merge pull request #4304 from warwickmm/fix_hidden_ssh_fingerprint_error
Fix typo that resulted in hidden SSH fingerprint error
Diffstat (limited to 'Duplicati/Server')
-rw-r--r--Duplicati/Server/webroot/ngax/scripts/directives/backupEditUri.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Server/webroot/ngax/scripts/directives/backupEditUri.js b/Duplicati/Server/webroot/ngax/scripts/directives/backupEditUri.js
index 8f44f7410..d20a8105e 100644
--- a/Duplicati/Server/webroot/ngax/scripts/directives/backupEditUri.js
+++ b/Duplicati/Server/webroot/ngax/scripts/directives/backupEditUri.js
@@ -209,7 +209,7 @@ backupApp.directive('backupEditUri', function(gettextCatalog) {
var message = ((prev || '').trim().length == 0) ?
(gettextCatalog.getString('No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?', { key: key }))
:
- (gettextCatalog.getString('The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key "{{prev}}" with the REPORTED host key: {{key}}?', { prev: pref, key: key }));
+ (gettextCatalog.getString('The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key "{{prev}}" with the REPORTED host key: {{key}}?', { prev: prev, key: key }));
DialogService.dialog(gettextCatalog.getString('Trust host certificate?'), message, [gettextCatalog.getString('No'), gettextCatalog.getString('Yes')], function(ix) {
if (ix == 1) {