mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
No error log entries for repo 404 (#2200)
This commit is contained in:
parent
5707ad3bb7
commit
e7653a67a1
1 changed files with 2 additions and 2 deletions
|
@ -184,7 +184,7 @@ func RepoAssignment() macaron.Handler {
|
|||
earlyResponseForGoGetMeta(ctx)
|
||||
return
|
||||
}
|
||||
ctx.Handle(404, "GetUserByName", err)
|
||||
ctx.Handle(404, "GetUserByName", nil)
|
||||
} else {
|
||||
ctx.Handle(500, "GetUserByName", err)
|
||||
}
|
||||
|
@ -206,7 +206,7 @@ func RepoAssignment() macaron.Handler {
|
|||
earlyResponseForGoGetMeta(ctx)
|
||||
return
|
||||
}
|
||||
ctx.Handle(404, "GetRepositoryByName", err)
|
||||
ctx.Handle(404, "GetRepositoryByName", nil)
|
||||
} else {
|
||||
ctx.Handle(500, "LookupRepoRedirect", err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue