Skip to content

Commit

Permalink
Minor fine tuning of some default parameters
Browse files Browse the repository at this point in the history
gorhill committed Jan 21, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent b79052d commit 1747318
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/background.js
Original file line number Diff line number Diff line change
@@ -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',
2 changes: 1 addition & 1 deletion src/js/static-net-filtering.js
Original file line number Diff line number Diff line change
@@ -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`);
};

0 comments on commit 1747318

Please sign in to comment.