diff options
author | 6543 <6543@obermui.de> | 2020-10-13 02:41:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 20:41:49 -0400 |
commit | ade9c8dc3cc75da09642cbb259d3dd4efeb41a6b (patch) | |
tree | 3b3ca2101214ea1e77d895eaf4cf2a8c16b653df /modules | |
parent | f4ffe8ed54cc49b8c0ca20a8aa1db6732f39a8a0 (diff) | |
download | gitea-ade9c8dc3cc75da09642cbb259d3dd4efeb41a6b.tar.gz gitea-ade9c8dc3cc75da09642cbb259d3dd4efeb41a6b.zip |
[API] If User is Admin, show 500 error message on PROD mode too (#13115)
* API: show admin 500 error message on PROD mode too
* a nit
* dont miss InternalServerError
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/context/api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/context/api.go b/modules/context/api.go index fdc000e4a5..772e1f8f50 100644 --- a/modules/context/api.go +++ b/modules/context/api.go @@ -82,7 +82,7 @@ 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 { + if macaron.Env == macaron.PROD && !(ctx.User != nil && ctx.User.IsAdmin) { message = "" } } @@ -99,7 +99,7 @@ func (ctx *APIContext) InternalServerError(err error) { log.ErrorWithSkip(1, "InternalServerError: %v", err) var message string - if macaron.Env != macaron.PROD { + if macaron.Env != macaron.PROD || (ctx.User != nil && ctx.User.IsAdmin) { message = err.Error() } |