Fix a missing variable declaration.
This commit is contained in:
		@@ -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() {}};
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user