fix(server) start: url -> URL

This commit is contained in:
coderaiser 2014-02-24 11:07:15 -05:00
parent a0c641183c
commit a89eb26c67

View file

@ -124,7 +124,7 @@
redirectServer = http.createServer(function(req, res) {
var url,
host = req.headers.host,
parsed = url.parse(host),
parsed = URL.parse(host),
hostName = parsed.protocol;
url = HTTPS + hostName + sslPort + req.url;