version bump
[pub/Android/ownCloud.git] / src / eu / alefzero / owncloud / authenticator / ConnectionCheckerRunnable.java
index 66c6c3d..bc0ff78 100644 (file)
@@ -95,7 +95,7 @@ public class ConnectionCheckerRunnable implements Runnable {
 
     private boolean tryConnection(Uri uri) {
         WebdavClient wc = new WebdavClient(uri);
-        wc.allowUnsignedCertificates();
+        wc.allowSelfsignedCertificates();
         GetMethod get = new GetMethod(uri.toString());
         boolean retval = false;
         try {