Merge pull request #73 from benkibbey/tasker

Fix trusted certificate setting with Tasker plugin.
This commit is contained in:
Andrew Dolgov 2014-11-01 19:17:47 +03:00
commit a5b62f36b1
2 changed files with 2 additions and 1 deletions

View File

@ -279,7 +279,7 @@ public class ApiRequest extends AsyncTask<HashMap<String,String>, Integer, JsonE
return null; return null;
} }
protected static void trustAllHosts(boolean trustAnyCert, boolean trustAnyHost) { public static void trustAllHosts(boolean trustAnyCert, boolean trustAnyHost) {
try { try {
if (trustAnyCert) { if (trustAnyCert) {
X509TrustManager easyTrustManager = new X509TrustManager() { X509TrustManager easyTrustManager = new X509TrustManager() {

View File

@ -80,6 +80,7 @@ public class TaskerReceiver extends BroadcastReceiver {
String login = prefs.getString("login", "").trim(); String login = prefs.getString("login", "").trim();
String password = prefs.getString("password", "").trim(); String password = prefs.getString("password", "").trim();
String ttrssUrl = prefs.getString("ttrss_url", "").trim(); String ttrssUrl = prefs.getString("ttrss_url", "").trim();
ApiRequest.trustAllHosts(prefs.getBoolean("ssl_trust_any", false), prefs.getBoolean("ssl_trust_any_host", false));
if (ttrssUrl.equals("")) { if (ttrssUrl.equals("")) {
Toast toast = Toast.makeText(fContext, "Could not download articles: not configured?", Toast.LENGTH_SHORT); Toast toast = Toast.makeText(fContext, "Could not download articles: not configured?", Toast.LENGTH_SHORT);