Skip to content

Commit

Permalink
Merge pull request #177 from tbassetto/patch-1
Browse files Browse the repository at this point in the history
Fix the URL the server listen to when printed to the console
  • Loading branch information
justinmchase committed Mar 23, 2016
2 parents 0aaad46 + 80d3e0f commit a7a8acc
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 a7a8acc

Please # to comment.