diff --git a/CHANGELOG.md b/CHANGELOG.md index ee7deef..22cadc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 3.2.0 -- Feature #420: implement blacklist feature to disable SSL/TLS versions on Android (thanks mobisys Mobile Informationssysteme GmbH) +- Feature #420: implement blacklist feature to disable SSL/TLS versions on Android (thanks to @MobisysGmbH) ## 3.1.1 diff --git a/test/e2e-specs.js b/test/e2e-specs.js index 717ac98..7ddde92 100644 --- a/test/e2e-specs.js +++ b/test/e2e-specs.js @@ -105,11 +105,7 @@ const helpers = { return buffer; }, isTlsBlacklistSupported: function () { - if (window.cordova && window.cordova.platformId === 'android') { - return true; - } - - return false; + return window.cordova && window.cordova.platformId === 'android'; } };