Removed trimming space in password on login page

This commit is contained in:
CappielloAntonio 2021-05-02 12:24:14 +02:00
parent 86fcc8b479
commit 8b73e99311

View file

@ -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)) {