|
|
@ -97,7 +97,7 @@ define([
|
|
|
|
var checkCheckpoints = function (array) {
|
|
|
|
var checkCheckpoints = function (array) {
|
|
|
|
if (!Array.isArray(array)) { return; }
|
|
|
|
if (!Array.isArray(array)) { return; }
|
|
|
|
// Keep the last 100 messages
|
|
|
|
// Keep the last 100 messages
|
|
|
|
if (array.length > 100) {
|
|
|
|
if (array.length > 100) { // XXX
|
|
|
|
array.splice(0, array.length - 100);
|
|
|
|
array.splice(0, array.length - 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Remove every message before the first checkpoint
|
|
|
|
// Remove every message before the first checkpoint
|
|
|
|