Change way of checking if host url needs to be tested due to only in one case it should not be checked

This commit is contained in:
jabarros 2016-04-25 14:04:46 +02:00
parent d78c03351f
commit 61c6393f7f

View file

@ -366,7 +366,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
* @param savedInstanceState Saved activity state, as in {{@link #onCreate(Bundle)}
*/
private void initServerPreFragment(Bundle savedInstanceState) {
boolean checkHostUrl = false;
boolean checkHostUrl = true;
/// step 1 - load and process relevant inputs (resources, intent, savedInstanceState)
boolean isUrlInputAllowed = getResources().getBoolean(R.bool.show_server_url_input);
@ -409,12 +409,11 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
mHostUrlInput.setFocusable(false);
}
if (isUrlInputAllowed) {
if (!mServerInfo.mBaseUrl.isEmpty()) {
checkHostUrl = true;
if (mServerInfo.mBaseUrl.isEmpty()) {
checkHostUrl = false;
}
mRefreshButton = findViewById(R.id.embeddedRefreshButton);
} else {
checkHostUrl = true;
findViewById(R.id.hostUrlFrame).setVisibility(View.GONE);
mRefreshButton = findViewById(R.id.centeredRefreshButton);
}