Skip to content

Commit

Permalink
[lint] Fix prettier error
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinca committed Dec 8, 2023
1 parent 726abc3 commit 208220d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/websocket.js
Original file line number Diff line number Diff line change
Expand Up @@ -806,8 +806,8 @@ function initAsClient(websocket, address, protocols, options) {
? opts.socketPath === websocket._originalHostOrSocketPath
: false
: websocket._originalIpc
? false
: parsedUrl.host === websocket._originalHostOrSocketPath;
? false
: parsedUrl.host === websocket._originalHostOrSocketPath;

if (!isSameHost || (websocket._originalSecure && !isSecure)) {
//
Expand Down

0 comments on commit 208220d

Please sign in to comment.