From d3a99fff003c9b41c6252f0ed8b8135738e2c383 Mon Sep 17 00:00:00 2001 From: jabarros Date: Thu, 4 Sep 2014 13:13:07 +0200 Subject: [PATCH] Fixed bug it is not possible to login using two accounts in saml server. Clear webview cache. --- src/com/owncloud/android/authentication/SsoWebViewClient.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/owncloud/android/authentication/SsoWebViewClient.java b/src/com/owncloud/android/authentication/SsoWebViewClient.java index 88cea8af74..b9b7319989 100644 --- a/src/com/owncloud/android/authentication/SsoWebViewClient.java +++ b/src/com/owncloud/android/authentication/SsoWebViewClient.java @@ -87,6 +87,7 @@ public class SsoWebViewClient extends WebViewClient { @Override public void onPageStarted (WebView view, String url, Bitmap favicon) { Log_OC.d(TAG, "onPageStarted : " + url); + view.clearCache(true); super.onPageStarted(view, url, favicon); }