Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1651d1a5 authored by David A. Velasco's avatar David A. Velasco
Browse files

Merge pull request #26 from owncloud/fix_issue_482

Fixed issue 482 in android project
parents 7c481f7a 20aaa5ee
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -153,13 +153,13 @@ public class RemoteOperationResult implements Serializable {
            Header current;
            for (int i=0; i<headers.length; i++) {
                current = headers[i];
                if ("Location".equals(current.getName())) {
                if ("location".equals(current.getName().toLowerCase())) {
                    mRedirectedLocation = current.getValue();
                    break;
                    continue;
                }
                if ("WWW-Authenticate".equals(current.getName())) {
                if ("www-authenticate".equals(current.getName().toLowerCase())) {
                	mAuthenticate = current.getValue();
                	break;
                	continue;
                }
            }
        }