We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e4ca2 commit 847cb73Copy full SHA for 847cb73
ring-core/src/ring/middleware/multipart_params.clj
@@ -69,10 +69,10 @@
69
(let [html5-encoding (parse-html5-charset params)]
70
(for [[k v field?] params]
71
[k (if field?
72
- (String. (:bytes v) (str (or forced-encoding
73
- html5-encoding
74
- (:encoding v)
75
- fallback-encoding)))
+ (String. ^bytes (:bytes v) (str (or forced-encoding
+ html5-encoding
+ (:encoding v)
+ fallback-encoding)))
76
v)])))
77
78
(defn- parse-file-item
0 commit comments