mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
Removed trimming space in password on login page
This commit is contained in:
parent
86fcc8b479
commit
8b73e99311
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ public class LoginFragment extends Fragment {
|
|||
|
||||
private boolean validateInput() {
|
||||
username = bind.usernameTextView.getText().toString().trim();
|
||||
password = bind.passwordTextView.getText().toString().trim();
|
||||
password = bind.passwordTextView.getText().toString();
|
||||
server = bind.serverTextView.getText().toString().trim();
|
||||
|
||||
if (TextUtils.isEmpty(username)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue