From: jabarros Date: Thu, 4 Sep 2014 11:13:07 +0000 (+0200) Subject: Fixed bug it is not possible to login using two accounts in saml server. Clear webvie... X-Git-Tag: oc-android-1.7.0_signed~193^2~2 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/d3a99fff003c9b41c6252f0ed8b8135738e2c383 Fixed bug it is not possible to login using two accounts in saml server. Clear webview cache. --- diff --git a/src/com/owncloud/android/authentication/SsoWebViewClient.java b/src/com/owncloud/android/authentication/SsoWebViewClient.java index 88cea8af..b9b73199 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); }