Browse Source

Follow up: Fixed issue #1442 - SSL certificate verification for certificate not matching hostnames fail.

Thorsten Eckel 7 years ago
parent
commit
1d2c9eded3

+ 1 - 1
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