1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Avoid ignoring important headers

This commit is contained in:
David A. Velasco 2014-05-21 10:15:19 +02:00
parent cd5d0cfb20
commit 20aaa5eee7

View File

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