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 +0 -2
- package/braid-http-client.js +2 -4
- package/package.json +1 -1
package/README.md
CHANGED
package/braid-http-client.js
CHANGED
|
@@ -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
|
-
|
|
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
|
|