use login credentials exactly as provided
This commit is contained in:
parent
9f40b7281c
commit
8d47350ba4
1 changed files with 3 additions and 3 deletions
|
|
@ -84,9 +84,9 @@ public class LoginActivity extends AbsBaseActivity implements View.OnClickListen
|
|||
return;
|
||||
}
|
||||
|
||||
String username = binding.username.getText().toString().trim();
|
||||
String password = binding.password.getText().toString().trim();
|
||||
String server = binding.server.getText().toString().trim();
|
||||
String username = binding.username.getText().toString();
|
||||
String password = binding.password.getText().toString();
|
||||
String server = binding.server.getText().toString();
|
||||
Context context = this;
|
||||
|
||||
if (TextUtils.isEmpty(username)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue