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

Commit 20aaa5ee authored by David A. Velasco's avatar David A. Velasco
Browse files

Avoid ignoring important headers

parent cd5d0cfb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -155,11 +155,11 @@ public class RemoteOperationResult implements Serializable {
                current = headers[i];
                if ("location".equals(current.getName().toLowerCase())) {
                    mRedirectedLocation = current.getValue();
                    break;
                    continue;
                }
                if ("www-authenticate".equals(current.getName().toLowerCase())) {
                	mAuthenticate = current.getValue();
                	break;
                	continue;
                }
            }
        }