From b75e1cc821345d482453d8e02a96c6ac1d437c42 Mon Sep 17 00:00:00 2001 From: Tim Toomey Date: Mon, 9 Feb 2015 18:06:59 -0800 Subject: [PATCH] Need to default to false else will always evaluate to true --- config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.js b/config.js index 50fe116..3789ec3 100644 --- a/config.js +++ b/config.js @@ -16,7 +16,7 @@ exports.server = { }; exports.googleanalytics = { - enabled: argv['gaEnabled'] || true, + enabled: argv['gaEnabled'] || false, account: argv['gaAccount'] || "UA-2069672-4" };