1
0
Fork 0
forked from forgejo/forgejo

Remove check for negative length (#5120)

This commit is contained in:
Oleg Kovalov 2018-10-20 23:25:14 +02:00 committed by techknowlogick
parent 583b1b8429
commit 5a4648cdd6
7 changed files with 8 additions and 8 deletions

View file

@ -36,7 +36,7 @@ func SignedInID(ctx *macaron.Context, sess session.Store) int64 {
// Check access token.
if IsAPIPath(ctx.Req.URL.Path) {
tokenSHA := ctx.Query("token")
if len(tokenSHA) <= 0 {
if len(tokenSHA) == 0 {
tokenSHA = ctx.Query("access_token")
}
if len(tokenSHA) == 0 {

View file

@ -18,7 +18,7 @@ func getWhoamiOutput() (string, error) {
func TestCurrentUsername(t *testing.T) {
user := CurrentUsername()
if len(user) <= 0 {
if len(user) == 0 {
t.Errorf("expected non-empty user, got: %s", user)
}
// Windows whoami is weird, so just skip remaining tests