From aac32c0ccffa7e2a3981622d9664e885b203262b Mon Sep 17 00:00:00 2001 From: gorhill Date: Tue, 8 Jul 2014 00:57:44 -0400 Subject: [PATCH] actually "social" less likely to be false positive when using fanboy annoyance --- js/abp-filters.js | 1 - js/profiler.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/js/abp-filters.js b/js/abp-filters.js index e03d22682..3425d20dc 100644 --- a/js/abp-filters.js +++ b/js/abp-filters.js @@ -733,7 +733,6 @@ var badTokens = { 'js': true, 'net': true, 'news': true, - 'social': true, 'www': true }; diff --git a/js/profiler.js b/js/profiler.js index 36caedbaf..6f03ecb2e 100644 --- a/js/profiler.js +++ b/js/profiler.js @@ -45,7 +45,7 @@ var quickProfiler = (function() { count += 1; time += (now - tstart); if ( (now - lastlog) > 10000 ) { - console.log('µBlock() > %s: %s ms (%d samples)', prompt, avg().toFixed(3), count); + console.log('µBlock > %s: %s ms (%d samples)', prompt, avg().toFixed(3), count); lastlog = now; } };