Skip to content

Commit

Permalink
opsie
Browse files Browse the repository at this point in the history
  • Loading branch information
cirospaciari committed Oct 18, 2024
1 parent 029ed2b commit ad6ce3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/node/http2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2813,7 +2813,7 @@ class ClientHttp2Session extends Http2Session {
};

#onRead(data: Buffer) {
h2Read(data);
h2Read(this[bunHTTP2Parser], data);
}

get originSet() {
Expand Down Expand Up @@ -3010,7 +3010,7 @@ class ClientHttp2Session extends Http2Session {
const port = url.port ? parseInt(url.port, 10) : protocol === "http:" ? 80 : 443;

function onConnect() {
this.#onConnect(arguments);
this.#onConnect();
listener?.$apply(this, arguments);
}

Expand Down

0 comments on commit ad6ce3f

Please sign in to comment.