Fix a missing variable declaration.

This commit is contained in:
Taylor Russ 2014-10-05 20:30:56 -07:00
parent 210b0aef27
commit cfc629399a

View File

@ -12,14 +12,15 @@ var express = require('express')
// Optional modules // Optional modules
var banned_numbers; var banned_numbers;
try { try {
banned_numbers = require('./banned_numbers.js') banned_numbers = require('./banned_numbers.js');
} catch(e) { } catch(e) {
banned_numbers = {BLACKLIST: {}}; banned_numbers = {BLACKLIST: {}};
} }
var mpq; var mpq
, mixpanel_config;
try { try {
mixpanel_config = require('./mixpanel_config.js') mixpanel_config = require('./mixpanel_config.js');
mpq = new mixpanel.Client(mixpanel_config.api_key); mpq = new mixpanel.Client(mixpanel_config.api_key);
} catch(e) { } catch(e) {
mpq = {track: function() {}}; mpq = {track: function() {}};