0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-10-03 08:19:04 +02:00

Log errors when there is an error validating token (#340)

This commit is contained in:
Erik Johnston 2017-11-16 15:46:52 +00:00 committed by Richard van der Hoff
parent 4b280943dc
commit bdc44c4bde

View file

@ -25,6 +25,7 @@ import (
"strings"
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
"github.com/matrix-org/dendrite/clientapi/httputil"
"github.com/matrix-org/dendrite/clientapi/jsonerror"
"github.com/matrix-org/util"
)
@ -62,10 +63,8 @@ func VerifyAccessToken(req *http.Request, deviceDB DeviceDatabase) (device *auth
JSON: jsonerror.UnknownToken("Unknown token"),
}
} else {
resErr = &util.JSONResponse{
Code: 500,
JSON: jsonerror.Unknown("Failed to check access token"),
}
jsonErr := httputil.LogThenError(req, err)
resErr = &jsonErr
}
}
return