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

This commit is contained in:
David A. Velasco 2012-08-03 12:56:50 +02:00
parent 532492bf9b
commit 6ef3fa77ef

View file

@ -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: