Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiling-J committed Jan 13, 2025
1 parent 6875165 commit 61b90e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func Middleware(service string, opts ...Option) gin.HandlerFunc {
// This means that when we are on returning path from handler middlewares up in chain from this middleware
// can not access these temporary files anymore because we deleted them here.
if c.Request.MultipartForm != nil {
c.Request.MultipartForm.RemoveAll()
_ = c.Request.MultipartForm.RemoveAll()
}
}()

Expand Down

0 comments on commit 61b90e2

Please sign in to comment.