Skip to content

Commit

Permalink
Minor fine tuning of some default parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jan 21, 2021
1 parent b79052d commit 1747318
Show file tree
Hide file tree
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
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/js/static-net-filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
};
Expand Down

0 comments on commit 1747318

Please sign in to comment.