Need to default to false else will always evaluate to true

This commit is contained in:
Tim Toomey 2015-02-09 18:06:59 -08:00
parent 5e3f4ee1a9
commit b75e1cc821

View file

@ -16,7 +16,7 @@ exports.server = {
}; };
exports.googleanalytics = { exports.googleanalytics = {
enabled: argv['gaEnabled'] || true, enabled: argv['gaEnabled'] || false,
account: argv['gaAccount'] || "UA-2069672-4" account: argv['gaAccount'] || "UA-2069672-4"
}; };