Merge branch 'patch-4' into 'master'

Update auth.js to fix #97 login failure

Closes #97

See merge request soapbox-pub/soapbox-fe!37
This commit is contained in:
Alex Gleason 2020-05-29 14:51:54 +00:00
commit 0feff2833c

View file

@ -114,7 +114,7 @@ export function refreshUserToken() {
export function logIn(username, password) {
return (dispatch, getState) => {
return dispatch(initAuthApp()).then(() => {
return dispatch(createAppAndToken()).then(() => {
return dispatch(createUserToken(username, password));
}).catch(error => {
dispatch(showAlert('Login failed.', 'Invalid username or password.'));