fix #1221
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -527,7 +527,7 @@ func (c *Controller) GetFile(key string) (multipart.File, *multipart.FileHeader, | ... | @@ -527,7 +527,7 @@ func (c *Controller) GetFile(key string) (multipart.File, *multipart.FileHeader, |
| 527 | // } | 527 | // } |
| 528 | // } | 528 | // } |
| 529 | func (c *Controller) GetFiles(key string) ([]*multipart.FileHeader, error) { | 529 | func (c *Controller) GetFiles(key string) ([]*multipart.FileHeader, error) { |
| 530 | files, ok := c.Ctx.Request.MultipartForm.File["key"] | 530 | files, ok := c.Ctx.Request.MultipartForm.File[key] |
| 531 | if ok { | 531 | if ok { |
| 532 | return files, nil | 532 | return files, nil |
| 533 | } | 533 | } | ... | ... |
-
Please register or sign in to post a comment