Преглед изворни кода

Merge pull request #254 from bfosberry/fixing-static-bug

Fixing bug with static pathing
Manu Mtz.-Almeida пре 10 година
родитељ
комит
408108f4e7
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      routergroup.go

+ 3 - 3
routergroup.go

@@ -111,11 +111,11 @@ func (group *RouterGroup) UNLINK(relativePath string, handlers ...HandlerFunc) {
 func (group *RouterGroup) Static(relativePath, root string) {
 	absolutePath := group.calculateAbsolutePath(relativePath)
 	handler := group.createStaticHandler(absolutePath, root)
-	absolutePath = path.Join(absolutePath, "/*filepath")
+	relativePath = path.Join(relativePath, "/*filepath")
 
 	// Register GET and HEAD handlers
-	group.GET(absolutePath, handler)
-	group.HEAD(absolutePath, handler)
+	group.GET(relativePath, handler)
+	group.HEAD(relativePath, handler)
 }
 
 func (group *RouterGroup) createStaticHandler(absolutePath, root string) func(*Context) {