mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 02:27:19 -04:00 
			
		
		
		
	Ensure that proper names are capitalized in error strings.
This commit is contained in:
		
							parent
							
								
									41e1f1ffa5
								
							
						
					
					
						commit
						9e97d79c81
					
				| @ -76,24 +76,24 @@ func nextFunc(shouldGzip bool) middleware.Handler { | |||||||
| 	return middleware.HandlerFunc(func(w http.ResponseWriter, r *http.Request) (int, error) { | 	return middleware.HandlerFunc(func(w http.ResponseWriter, r *http.Request) (int, error) { | ||||||
| 		if shouldGzip { | 		if shouldGzip { | ||||||
| 			if r.Header.Get("Accept-Encoding") != "" { | 			if r.Header.Get("Accept-Encoding") != "" { | ||||||
| 				return 0, fmt.Errorf("accept-Encoding header not expected") | 				return 0, fmt.Errorf("Accept-Encoding header not expected") | ||||||
| 			} | 			} | ||||||
| 			if w.Header().Get("Content-Encoding") != "gzip" { | 			if w.Header().Get("Content-Encoding") != "gzip" { | ||||||
| 				return 0, fmt.Errorf("content-Encoding must be gzip, found %v", r.Header.Get("Content-Encoding")) | 				return 0, fmt.Errorf("Content-Encoding must be gzip, found %v", r.Header.Get("Content-Encoding")) | ||||||
| 			} | 			} | ||||||
| 			if _, ok := w.(gzipResponseWriter); !ok { | 			if _, ok := w.(gzipResponseWriter); !ok { | ||||||
| 				return 0, fmt.Errorf("responseWriter should be gzipResponseWriter, found %T", w) | 				return 0, fmt.Errorf("ResponseWriter should be gzipResponseWriter, found %T", w) | ||||||
| 			} | 			} | ||||||
| 			return 0, nil | 			return 0, nil | ||||||
| 		} | 		} | ||||||
| 		if r.Header.Get("Accept-Encoding") == "" { | 		if r.Header.Get("Accept-Encoding") == "" { | ||||||
| 			return 0, fmt.Errorf("accept-Encoding header expected") | 			return 0, fmt.Errorf("Accept-Encoding header expected") | ||||||
| 		} | 		} | ||||||
| 		if w.Header().Get("Content-Encoding") == "gzip" { | 		if w.Header().Get("Content-Encoding") == "gzip" { | ||||||
| 			return 0, fmt.Errorf("content-Encoding must not be gzip, found gzip") | 			return 0, fmt.Errorf("Content-Encoding must not be gzip, found gzip") | ||||||
| 		} | 		} | ||||||
| 		if _, ok := w.(gzipResponseWriter); ok { | 		if _, ok := w.(gzipResponseWriter); ok { | ||||||
| 			return 0, fmt.Errorf("responseWriter should not be gzipResponseWriter") | 			return 0, fmt.Errorf("ResponseWriter should not be gzipResponseWriter") | ||||||
| 		} | 		} | ||||||
| 		return 0, nil | 		return 0, nil | ||||||
| 	}) | 	}) | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user