Merge branch 'feat/#420-implement-blacklist-to-disable-TLS-protocols-on-Android' of https://github.com/silkimen/cordova-plugin-advanced-http into feat/#420-implement-blacklist-to-disable-TLS-protocols-on-Android

This commit is contained in:
Sefa Ilkimen
2021-07-15 12:53:39 +02:00
2 changed files with 2 additions and 6 deletions
+1 -5
View File
@@ -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';
}
};