mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 14:29:29 +01:00
fix quotes
This commit is contained in:
parent
4ffff09381
commit
3021601c52
@ -35,7 +35,7 @@ var quotes = function(dbot) {
|
||||
|
||||
'cleanRef': function(key) {
|
||||
key = key.toLowerCase();
|
||||
while(key.endsWith("_")) {
|
||||
while(key.slice(-1) == '_') {
|
||||
key = key.substring(0, key.length-1);
|
||||
}
|
||||
return key;
|
||||
@ -53,7 +53,7 @@ var quotes = function(dbot) {
|
||||
});
|
||||
|
||||
clearTimeout(this.rmTimer);
|
||||
if(this.rmCache.length < dbot.config.quotes.rmLimit) {
|
||||
if(this.rmCache.length < this.config.rmLimit) {
|
||||
this.rmTimer = setTimeout(function() {
|
||||
this.rmCache.length = 0; // lol what
|
||||
}.bind(this), 600000);
|
||||
|
Loading…
Reference in New Issue
Block a user