Browse Source

[API] on 500 error only show message if gitea in dev mode (#11641)

* add API specific InternalServerError()

* return 500 error msg only if not Production mode

* rm unnessesary change
for-closed-social
6543 4 years ago
committed by GitHub
parent
commit
ce7510a80f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      modules/context/api.go

+ 4
- 0
modules/context/api.go View File

@ -77,6 +77,10 @@ func (ctx *APIContext) Error(status int, title string, obj interface{}) {
if status == http.StatusInternalServerError {
log.ErrorWithSkip(1, "%s: %s", title, message)
if macaron.Env == macaron.PROD {
message = ""
}
}
ctx.JSON(status, APIError{

Loading…
Cancel
Save