summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorFranz Schmidt <valsatize@gmail.com>2016-06-27 11:02:39 +0200
committer无闻 <u@gogs.io>2016-06-27 17:02:39 +0800
commit8b35c194ecf5ff44a0b80595a5631e76e14fd0fb (patch)
tree2efcf19f367848d317ae20685db26ae352b2f2c4 /routers
parentac05f886413bb5f2ca97b9af8ad5209619c138c0 (diff)
downloadgitea-8b35c194ecf5ff44a0b80595a5631e76e14fd0fb.tar.gz
gitea-8b35c194ecf5ff44a0b80595a5631e76e14fd0fb.zip
Fixes #3110 (#3136)
Diffstat (limited to 'routers')
-rw-r--r--routers/repo/http.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/http.go b/routers/repo/http.go
index 80a480bc59..fba06133c9 100644
--- a/routers/repo/http.go
+++ b/routers/repo/http.go
@@ -112,7 +112,7 @@ func HTTP(ctx *context.Context) {
// Assume username now is a token.
token, err := models.GetAccessTokenBySHA(authUsername)
if err != nil {
- if models.IsErrAccessTokenNotExist(err) {
+ if models.IsErrAccessTokenNotExist(err) || models.IsErrAccessTokenEmpty(err) {
ctx.HandleText(http.StatusUnauthorized, "invalid token")
} else {
ctx.Handle(http.StatusInternalServerError, "GetAccessTokenBySha", err)