Compare commits

...

3 Commits

Author SHA1 Message Date
John Hiesey b63537f11d 2.6.3 2017-01-19 03:26:43 -08:00
John Hiesey 11d14fc642 Revert unnecessary part of previous change 2017-01-17 20:23:25 -08:00
John Hiesey 8e1f534a8a Fix Edge fetch errors 2017-01-17 18:39:22 -08:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ ClientRequest.prototype._onFinish = function () {
global.fetch(self._opts.url, {
method: self._opts.method,
headers: headers,
body: body,
body: body || undefined,
mode: 'cors',
credentials: opts.withCredentials ? 'include' : 'same-origin'
}).then(function (response) {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "stream-http",
"version": "2.6.2",
"version": "2.6.3",
"description": "Streaming http in the browser",
"main": "index.js",
"repository": {