diff options
Diffstat (limited to 'internal/context/auth.go')
-rw-r--r-- | internal/context/auth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/context/auth.go b/internal/context/auth.go index 6e67d8ef..5f64161a 100644 --- a/internal/context/auth.go +++ b/internal/context/auth.go @@ -117,7 +117,7 @@ func authenticatedUserID(c *macaron.Context, sess session.Store) (_ int64, isTok if len(tokenSHA) <= 0 { tokenSHA = c.Query("access_token") } - if len(tokenSHA) == 0 { + if tokenSHA == "" { // Well, check with header again. auHead := c.Req.Header.Get("Authorization") if len(auHead) > 0 { |