mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
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:
parent
d78c03351f
commit
61c6393f7f
1 changed files with 3 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue