Skip to content

Commit

Permalink
Inline IE9 bogus request body check.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgraham committed Nov 13, 2014
1 parent dad14bf commit 66f2479
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,7 @@
})
})

var body = self._body
if (body === undefined) {
body = null
}
xhr.send(body)
xhr.send((self._body === undefined) ? null : self._body)
})
}

Expand Down

0 comments on commit 66f2479

Please sign in to comment.