delete category when rmlast makes empty quote category

This commit is contained in:
Luke Slater 2012-02-27 15:15:30 +00:00
parent 72fb19768a
commit 201f3648d1

View File

@ -52,7 +52,7 @@ var quotes = function(dbot) {
if(quotes.hasOwnProperty(q[1])) { if(quotes.hasOwnProperty(q[1])) {
if(!dbot.db.locks.include(q[1]) || data.user == dbot.admin) { if(!dbot.db.locks.include(q[1]) || data.user == dbot.admin) {
var quote = quotes[key].pop(); var quote = quotes[key].pop();
if(quotes[key].length) { if(quotes[key].length === 0) {
delete quotes[key]; delete quotes[key];
} }
rmAllowed = false; rmAllowed = false;