From 80d3e0f43c723f660d9251d642522ca86ce9fe5c Mon Sep 17 00:00:00 2001 From: Thomas Bassetto Date: Tue, 22 Mar 2016 16:05:57 +0100 Subject: [PATCH] Fix the URL the server listen to when printed to the console Fixes #175 --- src/index.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.coffee b/src/index.coffee index 47713aa..e930d66 100644 --- a/src/index.coffee +++ b/src/index.coffee @@ -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 = [];