diff --git a/models/history.js b/models/history.js index 958b1de..1f97152 100644 --- a/models/history.js +++ b/models/history.js @@ -350,7 +350,7 @@ History.prototype.getHistoryRequestInterval = function() return null; var max = _.min(this._items, 'height').height - 1; - var min = max - Math.min(100, (MAX_HISTORY - this._items.length + 1)) + 1; + var min = max - Math.min(50, (MAX_HISTORY - this._items.length + 1)) + 1; return {max: max, min: min}; }