Skip to content
This repository has been archived by the owner on Jan 16, 2018. It is now read-only.

Commit

Permalink
Merge pull request #79 from Cellule/master
Browse files Browse the repository at this point in the history
Fixes #78
  • Loading branch information
sokra committed Sep 1, 2015
2 parents 5123582 + a2d42e9 commit 16c0db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module.exports = function(options) {
});


var port = +(process.env.PORT || options.defaultPort || 8080);
var port = process.env.PORT || options.defaultPort || 8080;
app.listen(port, function() {
console.log("Server listening on port " + port);
});
Expand Down

0 comments on commit 16c0db3

Please sign in to comment.