Skip to content

Commit 0812ebd

Browse files
committed
http2: fix kUpdateTimer timer refresh
Fixes an oversight from 93eb68e Wasn't caught by a test. PR-URL: #18062 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent ba07699 commit 0812ebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/http2/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1478,7 +1478,7 @@ class Http2Stream extends Duplex {
14781478
if (this.destroyed)
14791479
return;
14801480
if (this[kTimeout])
1481-
_unrefActive([kTimeout]);
1481+
_unrefActive(this[kTimeout]);
14821482
if (this[kSession])
14831483
this[kSession][kUpdateTimer]();
14841484
}

0 commit comments

Comments
 (0)