mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-02 10:23:33 +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() {
|
private boolean validateInput() {
|
||||||
username = bind.usernameTextView.getText().toString().trim();
|
username = bind.usernameTextView.getText().toString().trim();
|
||||||
password = bind.passwordTextView.getText().toString().trim();
|
password = bind.passwordTextView.getText().toString();
|
||||||
server = bind.serverTextView.getText().toString().trim();
|
server = bind.serverTextView.getText().toString().trim();
|
||||||
|
|
||||||
if (TextUtils.isEmpty(username)) {
|
if (TextUtils.isEmpty(username)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue