Przeglądaj źródła

RedirectTrailingSlash has no effect unless RedirectFixedPath is set

Which is not likely the desired behavior.

RedirectTrailingSlash setting is meant to cause a redirect, but the code is never called because the setting wasn't being checked. Instead RedirectFixedPath was being checked.
error10 10 lat temu
rodzic
commit
2b8ed80da0
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gin.go

+ 1 - 1
gin.go

@@ -294,7 +294,7 @@ func (engine *Engine) handleHTTPRequest(context *Context) {
 				return
 				return
 
 
 			} else if httpMethod != "CONNECT" && path != "/" {
 			} else if httpMethod != "CONNECT" && path != "/" {
-				if tsr && engine.RedirectFixedPath {
+				if tsr && engine.RedirectTrailingSlash {
 					redirectTrailingSlash(context)
 					redirectTrailingSlash(context)
 					return
 					return
 				}
 				}