Raise the limit for detection of stale content scripts

This commit is contained in:
Raymond Hill 2024-03-17 13:02:19 -04:00
parent fc1f0b771a
commit 38b325ecce
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 1 additions and 5 deletions

View File

@ -22,10 +22,6 @@
// For non-background page
/* globals browser */
'use strict';
/******************************************************************************/
// https://github.com/chrisaljoudi/uBlock/issues/456
@ -203,7 +199,7 @@ vAPI.messaging = {
// the main process is no longer reachable: memory leaks and bad
// performance become a risk -- especially for long-lived, dynamic
// pages. Guard against this.
if ( this.pending.size > 50 ) {
if ( this.pending.size > 1000 ) {
vAPI.shutdown.exec();
}
const port = this.getPort();