mirror of
				https://github.com/optim-enterprises-bv/Xray-core.git
				synced 2025-11-03 20:17:53 +00:00 
			
		
		
		
	fix [ log ]: small fix for better readability.
This commit is contained in:
		@@ -39,12 +39,12 @@ var upgrader = &websocket.Upgrader{
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
func (h *requestHandler) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
 | 
					func (h *requestHandler) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
 | 
				
			||||||
	if len(h.host) > 0 && request.Host != h.host {
 | 
						if len(h.host) > 0 && request.Host != h.host {
 | 
				
			||||||
		newError("failed to validate host, request:", request.Host, "config:", h.host).WriteToLog()
 | 
							newError("failed to validate host, request:", request.Host, ", config:", h.host).WriteToLog()
 | 
				
			||||||
		writer.WriteHeader(http.StatusNotFound)
 | 
							writer.WriteHeader(http.StatusNotFound)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if request.URL.Path != h.path {
 | 
						if request.URL.Path != h.path {
 | 
				
			||||||
		newError("failed to validate path, request:", request.URL.Path, "config:", h.path).WriteToLog()
 | 
							newError("failed to validate path, request:", request.URL.Path, ", config:", h.path).WriteToLog()
 | 
				
			||||||
		writer.WriteHeader(http.StatusNotFound)
 | 
							writer.WriteHeader(http.StatusNotFound)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user