David Luhmer 6 жил өмнө
parent
commit
415afeb4e3

+ 1 - 1
src/main/java/com/nextcloud/android/sso/InputStreamBinder.java

@@ -205,7 +205,7 @@ public class InputStreamBinder extends IInputStreamService.Stub {
         method.setQueryString(convertMapToNVP(request.getParameter()));
         method.addRequestHeader("OCS-APIREQUEST", "true");
 
-        client.setFollowRedirects(request.getFollowRedirects());
+        client.setFollowRedirects(request.isFollowRedirects());
         int status = client.executeMethod(method);
 
         // Check if status code is 2xx --> https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#2xx_Success

+ 4 - 4
src/main/java/com/nextcloud/android/sso/aidl/NextcloudRequest.java

@@ -26,7 +26,7 @@ import java.util.Map;
 
 public class NextcloudRequest implements Serializable {
 
-    private static final long serialVersionUID = 215521212534238L; //assign a long value
+    private static final long serialVersionUID = 215521212534239L; //assign a long value
 
     private String method;
     private Map<String, List<String>> header = new HashMap<>();
@@ -36,7 +36,7 @@ public class NextcloudRequest implements Serializable {
     private String token;
     private String packageName;
     private String accountName;
-    private boolean followRedirects = false;
+    private boolean followRedirects;
 
     private NextcloudRequest() { }
 
@@ -92,7 +92,7 @@ public class NextcloudRequest implements Serializable {
         }
 
         /**
-         * Default: true
+         * Default value: true
          * @param followRedirects
          * @return
          */
@@ -146,7 +146,7 @@ public class NextcloudRequest implements Serializable {
         this.accountName = accountName;
     }
 
-    public boolean getFollowRedirects() {
+    public boolean isFollowRedirects() {
         return this.followRedirects;
     }