1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Minor fine tuning of some default parameters

This commit is contained in:
Raymond Hill 2021-01-21 08:40:10 -05:00
parent b79052de3d
commit 174731851e
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ const µBlock = (( ) => { // jshint ignore:line
autoCommentFilterTemplate: '{{date}} {{origin}}',
autoUpdateAssetFetchPeriod: 120,
autoUpdateDelayAfterLaunch: 180,
autoUpdatePeriod: 7,
autoUpdatePeriod: 4,
benchmarkDatasetURL: 'unset',
blockingProfiles: '11111/#F00 11010/#C0F 11001/#00F 00001',
cacheStorageAPI: 'unset',

View File

@ -3437,7 +3437,7 @@ FilterContainer.prototype.freeze = function() {
this.optimizeTimerId = self.requestIdleCallback(( ) => {
this.optimizeTimerId = undefined;
this.optimize();
}, { timeout: 10000 });
}, { timeout: 5000 });
log.info(`staticNetFilteringEngine.freeze() took ${Date.now()-t0} ms`);
};