Keep a maximum on the tab ids
This commit is contained in:
parent
ef82ae7bc6
commit
1cdce6b058
@ -5,6 +5,9 @@ const ids = (function* () {
|
||||
let i = 0;
|
||||
while (true) {
|
||||
yield i++;
|
||||
if (i >= 100000) {
|
||||
i = 0;
|
||||
}
|
||||
}
|
||||
})();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user