|
@@ -81,7 +81,7 @@ class BridgeFilter(private val template: SimpMessagingTemplate, val resourceLoad
|
|
|
val rb = RequestBuilder(reqId, toPath, HttpMethod.valueOf(req.method), headerMap.toMutableMap())
|
|
|
|
|
|
rb.queryString = req.queryString
|
|
|
- if (req.contentType != null && req.contentType.toLowerCase().indexOf("multipart/form-data") > -1) {
|
|
|
+ if (req.contentType != null && req.contentType.toLowerCase().contains("multipart/form-data")) {
|
|
|
rb.parts =
|
|
|
req.parts.map {
|
|
|
val subFilename = if (it.submittedFileName == null) {
|