| Index: lib/stats.js |
| =================================================================== |
| --- a/lib/stats.js |
| +++ b/lib/stats.js |
| @@ -16,17 +16,17 @@ |
| */ |
| /** @module stats */ |
| "use strict"; |
| const {Prefs} = require("./prefs"); |
| const {BlockingFilter} = require("../adblockpluscore/lib/filterClasses"); |
| -const {FilterNotifier} = require("../adblockpluscore/lib/filterNotifier"); |
| +const {filterNotifier} = require("../adblockpluscore/lib/filterNotifier"); |
| const {port} = require("./messaging"); |
| const badgeColor = "#646464"; |
| let blockedPerPage = new ext.PageMap(); |
| let getBlockedPerPage = |
| /** |
| * Gets the number of requests blocked on the given page. |
| @@ -56,17 +56,17 @@ |
| { |
| let page = new ext.Page({id: details.tabId}); |
| let blocked = blockedPerPage.get(page); |
| updateBadge(page, blocked); |
| } |
| }); |
| -FilterNotifier.on("filter.hitCount", (filter, newValue, oldValue, tabIds) => |
| +filterNotifier.on("filter.hitCount", (filter, newValue, oldValue, tabIds) => |
| { |
| if (!(filter instanceof BlockingFilter)) |
| return; |
| for (let tabId of tabIds) |
| { |
| let page = new ext.Page({id: tabId}); |
| let blocked = blockedPerPage.get(page) || 0; |