Skip to content

Commit

Permalink
Merge pull request #65 from hegrec/flipit
Browse files Browse the repository at this point in the history
Flip boolean for processData
  • Loading branch information
Mick Ryan committed Apr 11, 2016
2 parents 8f20f22 + bfa93c6 commit 79b0991
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bigcommerce/stencil-utils",
"version": "1.0.3",
"version": "1.0.4",
"main": "src/main.js",
"license": "BSD-4-Clause",
"author": "Bigcommerce",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function (url, opts, callback) {
method: options.method,
url,
contentType: options.requestOptions.formData ? false : 'application/x-www-form-urlencoded; charset=UTF-8',
processData: !!options.requestOptions.formData,
processData: !options.requestOptions.formData,
success: (response) => {
let ret;
const content = options.remote ? response.content : response;
Expand Down

0 comments on commit 79b0991

Please sign in to comment.