Skip to content

Commit

Permalink
Fix the URL the server listen to when printed to the console
Browse files Browse the repository at this point in the history
Fixes #175
  • Loading branch information
tbassetto committed Mar 22, 2016
1 parent 0aaad46 commit 80d3e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ConnectApp
if err
@log "Error on starting server: #{err}"
else
@log "Server started http#{if @https? then 's' else ''}://#{@host}:#{@port}"
@log "Server started http#{if @https then 's' else ''}://#{@host}:#{@port}"

stoped = false;
sockets = [];
Expand Down

0 comments on commit 80d3e0f

Please # to comment.