From df87f2ab1c761d3555b05e38b82de9178fd2610e Mon Sep 17 00:00:00 2001 From: AndyScherzinger Date: Mon, 29 May 2017 23:18:46 +0200 Subject: [PATCH] fix after master merge --- .../android/lib/common/operations/RemoteOperationResult.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java b/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java index e9c42a10b..d1a26251d 100644 --- a/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java +++ b/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java @@ -365,7 +365,7 @@ public RemoteOperationResult(boolean success, int httpCode, String httpPhrase, H continue; } if ("www-authenticate".equals(current.getName().toLowerCase())) { - mAuthenticate = current.getValue(); + mAuthenticateHeaders.add(current.getValue()); break; } }