From 1d70ae81ea2cf7708069677bb7265515b75a8ae0 Mon Sep 17 00:00:00 2001 From: masensio Date: Fri, 17 Jan 2014 15:12:12 +0100 Subject: [PATCH] OC-2640: Fix Bug: Log in screen disappear when trying to log in again with the same user --- src/com/owncloud/android/authentication/AuthenticatorActivity.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/owncloud/android/authentication/AuthenticatorActivity.java b/src/com/owncloud/android/authentication/AuthenticatorActivity.java index b3021418..ad40a066 100644 --- a/src/com/owncloud/android/authentication/AuthenticatorActivity.java +++ b/src/com/owncloud/android/authentication/AuthenticatorActivity.java @@ -805,8 +805,7 @@ implements OnRemoteOperationListener, OnSslValidatorListener, OnFocusChangeList if ( mAction == ACTION_CREATE) { mUsernameInput.setText(username); - createAccount(); - success = true; + success = createAccount(); } else { if (!mUsernameInput.getText().toString().equals(username)) { -- 2.11.0