braid-http 1.3.66 → 1.3.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1092,10 +1092,8 @@ async function create_multiplexer(origin, mux_key, params, mux_params, attempt)
1092
1092
 
1093
1093
  // tell the multiplexer to send bytes for this request to us
1094
1094
  requests.set(request, bytes => {
1095
- if (!bytes) {
1096
- buffers.push(bytes)
1097
- if (mux_error || request_error) aborter.abort()
1098
- } else if (!mux_error) buffers.push(bytes)
1095
+ if (!bytes) buffers.push(bytes)
1096
+ else if (!mux_error) buffers.push(bytes)
1099
1097
  bytes_available()
1100
1098
  })
1101
1099
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braid-http",
3
- "version": "1.3.66",
3
+ "version": "1.3.67",
4
4
  "description": "An implementation of Braid-HTTP for Node.js and Browsers",
5
5
  "scripts": {
6
6
  "test": "node test/server.js"