Don't check token length twice in Logout
parent
54d4d9a389
commit
4ce5a0198d
|
@ -9,10 +9,6 @@ import (
|
||||||
|
|
||||||
// /account/logout - log out of account
|
// /account/logout - log out of account
|
||||||
func Logout(token []byte) error {
|
func Logout(token []byte) error {
|
||||||
if len(token) != TokenSize {
|
|
||||||
return fmt.Errorf("invalid token")
|
|
||||||
}
|
|
||||||
|
|
||||||
err := db.RemoveSessionFromToken(token)
|
err := db.RemoveSessionFromToken(token)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == sql.ErrNoRows {
|
if err == sql.ErrNoRows {
|
||||||
|
|
Loading…
Reference in New Issue