X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/0a7d508f92c758a47376bf833c54c2511482f1f4..46674d32feb896ca8fb7dd40f25c100e167aec22:/src/com/owncloud/android/authentication/AuthenticatorActivity.java diff --git a/src/com/owncloud/android/authentication/AuthenticatorActivity.java b/src/com/owncloud/android/authentication/AuthenticatorActivity.java index 88738bbb..9643c895 100644 --- a/src/com/owncloud/android/authentication/AuthenticatorActivity.java +++ b/src/com/owncloud/android/authentication/AuthenticatorActivity.java @@ -316,7 +316,11 @@ implements OnRemoteOperationListener, OnSslValidatorListener, OnFocusChangeList public void beforeTextChanged(CharSequence s, int start, int count, int after) {} @Override - public void onTextChanged(CharSequence s, int start, int before, int count) {} + public void onTextChanged(CharSequence s, int start, int before, int count) { + mAuthStatusIcon = 0; + mAuthStatusText = 0; + showAuthStatus(); + } }); mPasswordInput.setOnFocusChangeListener(this); @@ -763,7 +767,8 @@ implements OnRemoteOperationListener, OnSslValidatorListener, OnFocusChangeList // NOTHING TO DO ; can't find out what situation that leads to the exception in this code, but user logs signal that it happens } - if (result.isTemporalRedirection() || result.isIdPRedirection()) { + //if (result.isTemporalRedirection() || result.isIdPRedirection()) { + if (result.isIdPRedirection()) { String url = result.getRedirectedLocation(); String targetUrl = mHostBaseUrl + AccountUtils.getWebdavPath(mDiscoveredVersion, mAuthTokenType);