Skip to content

Commit

Permalink
fix to remove whitespacing from login credentials (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Jul 31, 2020
1 parent a443145 commit adeb565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/interface/login/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class LoginScreenState extends State<LoginScreen>
if (form.validate()) {
setState(() => _isLoading = true);
form.save();
_presenter.doLogin(_username, _password, _url, _savePassword);
_presenter.doLogin(_username.trim(), _password.trim(), _url, _savePassword);
}
}

Expand Down

0 comments on commit adeb565

Please sign in to comment.