Skip to content

Commit efd929e

Browse files
jasnelladdaleax
authored andcommitted
http2: fix compilation error after V8 update
Backport-PR-URL: #14813 Backport-Reviewed-By: Anna Henningsen <[email protected]> Backport-Reviewed-By: Timothy Gu <[email protected]> PR-URL: #14239 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent f46c50b commit efd929e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_http2.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ void Http2Session::OnTrailers(Nghttp2Stream* stream,
868868
};
869869

870870
Local<Value> ret = MakeCallback(env()->ontrailers_string(),
871-
arraysize(argv), argv);
871+
arraysize(argv), argv).ToLocalChecked();
872872
if (!ret.IsEmpty()) {
873873
if (ret->IsArray()) {
874874
Local<Array> headers = ret.As<Array>();

0 commit comments

Comments
 (0)