diff options
Diffstat (limited to 'src/ajax/binary.js')
-rw-r--r-- | src/ajax/binary.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ajax/binary.js b/src/ajax/binary.js index 16f06d7e9..f629c52f7 100644 --- a/src/ajax/binary.js +++ b/src/ajax/binary.js @@ -6,6 +6,7 @@ jQuery.ajaxPrefilter( function( s, origOptions ) { // Binary data needs to be passed to XHR as-is without stringification. if ( typeof s.data !== "string" && !jQuery.isPlainObject( s.data ) && + !Array.isArray( s.data ) && // Don't disable data processing if explicitly set by the user. !( "processData" in origOptions ) ) { |