Browse Source

Added forgotten trim()s on the content of the URL field

David A. Velasco 12 năm trước cách đây
mục cha
commit
6ef3fa77ef

+ 2 - 2
src/com/owncloud/android/ui/activity/AuthenticatorActivity.java

@@ -234,7 +234,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
     public void onOkClick(View view) {
         String prefix = "";
         String url = ((TextView) findViewById(R.id.host_URL)).getText()
-                .toString();
+                .toString().trim();
         if (mIsSslConn) {
             prefix = "https://";
         } else {
@@ -282,7 +282,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
         mStatusText = mStatusIcon = 0;
         mStatusCorrect = false;
         String t_url = ((TextView) findViewById(R.id.host_URL)).getText()
-                .toString().toLowerCase();
+                .toString().trim().toLowerCase();
 
         switch (type) {
         case OK_SSL: