Skip to content

Commit 208220d

Browse files
committedDec 8, 2023
[lint] Fix prettier error
1 parent 726abc3 commit 208220d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/websocket.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -806,8 +806,8 @@ function initAsClient(websocket, address, protocols, options) {
806806
? opts.socketPath === websocket._originalHostOrSocketPath
807807
: false
808808
: websocket._originalIpc
809-
? false
810-
: parsedUrl.host === websocket._originalHostOrSocketPath;
809+
? false
810+
: parsedUrl.host === websocket._originalHostOrSocketPath;
811811

812812
if (!isSameHost || (websocket._originalSecure && !isSecure)) {
813813
//

0 commit comments

Comments
 (0)
Please sign in to comment.