mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	[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>
This commit is contained in:
		@@ -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()
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user