Fix issue with login error

fixes #9
This commit is contained in:
Tom Bloor 2017-07-20 17:34:33 +01:00
parent a6724f2495
commit 243722df93

View file

@ -85,15 +85,14 @@ sub post_login {
session_key => $session_key,
});
}
} else {
return $c->render(
json => {
success => Mojo::JSON->false,
message => 'Email or password is invalid.',
},
status => 401
);
}
return $c->render(
json => {
success => Mojo::JSON->false,
message => 'Email or password is invalid.',
},
status => 401
);
}
sub post_logout {