Skip to content

Commit

Permalink
fix double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Bethge committed Sep 29, 2016
1 parent f378c93 commit 99cf1f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var Server = function(config, callback) {

server.listen(config.port);
if (config.ipWhitelist === undefined) {
config.ipWhitelist = ['127.0.0.1', '::ffff:127.0.0.1'];
config.ipWhitelist = ["127.0.0.1", "::ffff:127.0.0.1"];
console.log("Warning: Missing value (ipWhitelist) from config.js, assuming default (localhost access only): " + config.ipWhitelist);
}

Expand Down

0 comments on commit 99cf1f4

Please sign in to comment.