Skip to content

Commit a74d021

Browse files
committed
Reenable history trimming (up to 200 closed tabs)
1 parent c269f6f commit a74d021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/spacesService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,9 +584,9 @@ var spacesService = {
584584
// eslint-disable-next-line no-param-reassign
585585
session.history = tabBeingRemoved.concat(session.history);
586586

587-
// trim history for this spae down to last 50 items
587+
// trim history for this space down to last 200 items
588588
// eslint-disable-next-line no-param-reassign
589-
session.history = session.history.slice(0, 50);
589+
session.history = session.history.slice(0, 200);
590590

591591
return session;
592592
},

0 commit comments

Comments
 (0)