This commit is contained in:
psychobunny
2014-07-28 14:23:25 -04:00
parent 60e74cc2c3
commit 3f9e6e7d86

View File

@@ -80,18 +80,7 @@ var db = require('./database'),
return callback(err); return callback(err);
} }
// Truncate recent chats list back down to 10 (should use LTRIM, see nodebb/nodebb#1901) db.listTrim('messages:recent:' + fromuid, 0, 9, callback);
db.getListRange('messages:recent:' + fromuid, 0, -1, function(err, list) {
if (err) {
return callback(err);
}
if (list.length > 10) {
db.listRemoveLast('messages:recent:' + fromuid, callback);
} else {
callback();
}
});
}); });
} }