inputdata: don't attempt mime decode on application/* except octet-stream
This commit is contained in:
@@ -135,7 +135,7 @@ public class InputDataOperation extends BaseOperation<InputDataParcel> {
|
|||||||
|| contentType != null
|
|| contentType != null
|
||||||
&& !contentType.startsWith("multipart/")
|
&& !contentType.startsWith("multipart/")
|
||||||
&& !contentType.startsWith("text/")
|
&& !contentType.startsWith("text/")
|
||||||
&& !contentType.startsWith("application/")) {
|
&& !"application/octet-stream".equals(contentType)) {
|
||||||
skipMimeParsing = true;
|
skipMimeParsing = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user