Skip to content

Commit a7a8acc

Browse files
committed
Merge pull request #177 from tbassetto/patch-1
Fix the URL the server listen to when printed to the console
2 parents 0aaad46 + 80d3e0f commit a7a8acc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ConnectApp
5555
if err
5656
@log "Error on starting server: #{err}"
5757
else
58-
@log "Server started http#{if @https? then 's' else ''}://#{@host}:#{@port}"
58+
@log "Server started http#{if @https then 's' else ''}://#{@host}:#{@port}"
5959

6060
stoped = false;
6161
sockets = [];

0 commit comments

Comments
 (0)