Permalink
Browse files

Added encoding to multipart getString method

  • Loading branch information...
1 parent 3b71afc commit 469382cd2e1e9b96dec8357e03e78e0e7654e248 @weavejester weavejester committed Sep 19, 2010
Showing with 1 addition and 1 deletion.
  1. +1 −1 ring-core/src/ring/middleware/multipart_params.clj
View
2 ring-core/src/ring/middleware/multipart_params.clj
@@ -49,7 +49,7 @@
(assoc-param param-map
(.getFieldName item)
(if (.isFormField item)
- (if (.get item) (.getString item))
+ (if (.get item) (.getString item encoding))
(file-map item))))
{}
(.parseRequest

0 comments on commit 469382c

Please sign in to comment.