forked from GitHub/dbot
logging fix + caching crash fix
This commit is contained in:
parent
fbc0aa59c2
commit
a3f9e238bf
@ -90,7 +90,7 @@ var imgur = function(dbot) {
|
|||||||
if(_.has(dbot.modules, 'quotes')){
|
if(_.has(dbot.modules, 'quotes')){
|
||||||
// autoadd: {"abcdef": "facebookman"}
|
// autoadd: {"abcdef": "facebookman"}
|
||||||
if(_.has(dbot.config.modules.imgur.autoadd,hash)){
|
if(_.has(dbot.config.modules.imgur.autoadd,hash)){
|
||||||
var category = dbot.config.imgur.autoadd[hash];
|
var category = this.config.autoadd[hash];
|
||||||
if (_.contains(category, testUrl)){
|
if (_.contains(category, testUrl)){
|
||||||
// there's probably less than 62^5 chance of this happening
|
// there's probably less than 62^5 chance of this happening
|
||||||
} else {
|
} else {
|
||||||
|
@ -58,6 +58,7 @@ var log = function(dbot) {
|
|||||||
}.bind(this));
|
}.bind(this));
|
||||||
|
|
||||||
process.on('uncaughtException', function(err) {
|
process.on('uncaughtException', function(err) {
|
||||||
|
console.log(err);
|
||||||
_.each(this.config.logChannel, function(chan, server) {
|
_.each(this.config.logChannel, function(chan, server) {
|
||||||
this.api.logError(server, err);
|
this.api.logError(server, err);
|
||||||
}, this);
|
}, this);
|
||||||
|
Loading…
Reference in New Issue
Block a user