From cfc629399a10528932bac8ded22d6ae7e78f587c Mon Sep 17 00:00:00 2001 From: Taylor Russ Date: Sun, 5 Oct 2014 20:30:56 -0700 Subject: [PATCH] Fix a missing variable declaration. --- server/app.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/server/app.js b/server/app.js index f31e660..37cb0a5 100644 --- a/server/app.js +++ b/server/app.js @@ -12,14 +12,15 @@ var express = require('express') // Optional modules var banned_numbers; try { - banned_numbers = require('./banned_numbers.js') + banned_numbers = require('./banned_numbers.js'); } catch(e) { banned_numbers = {BLACKLIST: {}}; } -var mpq; +var mpq + , mixpanel_config; try { - mixpanel_config = require('./mixpanel_config.js') + mixpanel_config = require('./mixpanel_config.js'); mpq = new mixpanel.Client(mixpanel_config.api_key); } catch(e) { mpq = {track: function() {}};