Skip to content

Commit cf2386b

Browse files
committed
2.1.9
1 parent 444454a commit cf2386b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "http2-wrapper",
3-
"version": "2.1.8",
3+
"version": "2.1.9",
44
"description": "HTTP2 client, just with the familiar `https` API",
55
"main": "source",
66
"types": "index.d.ts",

source/utils/delay-async-destroy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = stream => {
66
}
77

88
stream.__destroy = stream._destroy;
9-
stream._destroy = async (...args) => {
9+
stream._destroy = (...args) => {
1010
const callback = args.pop();
1111

1212
stream.__destroy(...args, async error => {

0 commit comments

Comments
 (0)