From 1d2c9eded3c612f3306a4e4bd87e008462e51b48 Mon Sep 17 00:00:00 2001 From: Thorsten Eckel Date: Wed, 1 Nov 2017 15:41:28 +0100 Subject: [PATCH] Follow up: Fixed issue #1442 - SSL certificate verification for certificate not matching hostnames fail. --- .../javascripts/app/controllers/_integration/exchange.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/app/controllers/_integration/exchange.coffee b/app/assets/javascripts/app/controllers/_integration/exchange.coffee index fd3d881b1..1973f96a9 100644 --- a/app/assets/javascripts/app/controllers/_integration/exchange.coffee +++ b/app/assets/javascripts/app/controllers/_integration/exchange.coffee @@ -262,7 +262,7 @@ class ConnectionWizard extends App.WizardModal success: (data, status, xhr) => if data.result isnt 'ok' - if data.message.indexOf('certificate verify failed') is -1 + if data.message.indexOf('certificate') is -1 @showSlide('js-discover') @showAlert('js-discover', data.message) else