Browse Source

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

jabarros 9 years ago
parent
commit
61c6393f7f

+ 3 - 4
src/com/owncloud/android/authentication/AuthenticatorActivity.java

@@ -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);
         }