fix item sort.

This commit is contained in:
Bingo 2020-08-21 15:02:47 +08:00
parent 37dd25122a
commit c113629b8c
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ History.prototype._save = function(block)
{
this._items.unshift(block);
this._items = _.sortBy( this._items, 'height', false );
this._items = _.orderBy( this._items, 'height', "desc" );
if(this._items.length > MAX_HISTORY)
{