Ver código fonte

Fixed java.lang.ClassCastException entered in the previous update

David A. Velasco 12 anos atrás
pai
commit
301b2760ba

+ 3 - 2
src/com/owncloud/android/network/SslAnalyzer.java

@@ -42,9 +42,10 @@ public class SslAnalyzer {
      */
     public static Exception getRecoverableException(RemoteOperationResult result) {
         Exception ret = null;
-        SSLException e = (SSLException)result.getException();
+        SSLException e = null;
         Throwable cause = null;
-        if (e != null) {
+        if (result.getException() instanceof SSLException) {
+            e = (SSLException)result.getException();
             if (e instanceof SSLPeerUnverifiedException) {
                 ret = e;
                 

+ 1 - 2
src/com/owncloud/android/ui/dialog/SslValidatorDialog.java

@@ -69,8 +69,7 @@ public class SslValidatorDialog extends Dialog {
      *                      by setting the certificate as reliable.
      */
     public static SslValidatorDialog newInstance(Context context, RemoteOperationResult result, OnSslValidatorListener listener) {
-        Exception e = SslAnalyzer.getRecoverableException(result);
-        if (e != null) {
+        if (SslAnalyzer.isRecoverable(result)) {
             SslValidatorDialog dialog = new SslValidatorDialog(context, listener);
             return dialog;
         } else {