Skip to content

Commit 415d4ed

Browse files
committed
match style requested by @cronopio
1 parent 06e78f2 commit 415d4ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: bin/node-http-proxy

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ else {
7979
//
8080
// Start the server
8181
//
82-
if (!host) {
83-
server.listen(port);
84-
} else {
82+
if (host) {
8583
server.listen(port, host);
84+
} else {
85+
server.listen(port);
8686
}
8787

8888
//

0 commit comments

Comments
 (0)