From 4ee606b8fca323df61915ae1c9f55388d9bb530f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Cla=C3=9Fen?= Date: Tue, 17 Dec 2024 11:00:25 +0100 Subject: [PATCH] Use new forwardRequestReporterMessage API to send message. Depends on https://github.com/whotracksme/webextension-packages/pull/149 --- src/background/reporting/webrequest-reporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background/reporting/webrequest-reporter.js b/src/background/reporting/webrequest-reporter.js index ab2f51950..38ba1a607 100644 --- a/src/background/reporting/webrequest-reporter.js +++ b/src/background/reporting/webrequest-reporter.js @@ -31,7 +31,7 @@ if (__PLATFORM__ === 'chromium' || __PLATFORM__ === 'firefox') { }); webRequestReporter = new RequestReporter(config.request, { - communication, + onMessageReady: urlReporter.forwardRequestReporterMessage.bind(urlReporter), countryProvider: urlReporter.countryProvider, trustedClock: communication.trustedClock, getBrowserInfo,