Эх сурвалжийг харах

OC-1029: add an extra condition to check of redirection. Check if LocationUrl contains SAML or wayf

masensio 11 жил өмнө
parent
commit
10f832498d

+ 3 - 1
src/com/owncloud/android/operations/RemoteOperationResult.java

@@ -313,7 +313,9 @@ public class RemoteOperationResult implements Serializable {
     }
 
     public boolean isTemporalRedirection() {
-        return (mHttpCode == 302 || mHttpCode == 307);
+        return (mHttpCode == 302 || mHttpCode == 307 || 
+                mRedirectedLocation.toUpperCase().contains("SAML") || 
+                mRedirectedLocation.toLowerCase().contains("wayf"));
     }
 
     public String getRedirectedLocation() {