braid-http 1.3.65 → 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.
package/README.md CHANGED
@@ -243,8 +243,6 @@ require('http').createServer(app).listen(8583)
243
243
  ```
244
244
 
245
245
 
246
- ```javascript
247
-
248
246
  ### Example Nodejs client with `require('http')`
249
247
 
250
248
  ```javascript
@@ -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.65",
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"