Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Feb 28, 2024
1 parent 5ff14e6 commit f55fc28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/dispatcher/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ async function connect (client) {
hostname,
protocol,
port,
version: client[kHTTPContext].version,
version: client[kHTTPContext]?.version,
servername: client[kServerName],
localAddress: client[kLocalAddress]
},
Expand Down Expand Up @@ -467,7 +467,7 @@ async function connect (client) {
hostname,
protocol,
port,
version: client[kHTTPContext].version,
version: client[kHTTPContext]?.version,
servername: client[kServerName],
localAddress: client[kLocalAddress]
},
Expand All @@ -490,7 +490,7 @@ async function connect (client) {
hostname,
protocol,
port,
version: client[kHTTPContext].version,
version: client[kHTTPContext]?.version,
servername: client[kServerName],
localAddress: client[kLocalAddress]
},
Expand Down

0 comments on commit f55fc28

Please sign in to comment.