summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhackademix2018-08-23 19:38:28 +0200
committerhackademix2018-08-23 19:38:28 +0200
commit9f67a125b8275067478170d68eecb6a3ce3ef84d (patch)
tree70ae5a796e58117957844c602f5fb0568cb33bbf /src
parentdbc9575c68049c2c74631c0d06966dcd5fa1b237 (diff)
downloadnoscript-9f67a125b8275067478170d68eecb6a3ce3ef84d.tar.gz
noscript-9f67a125b8275067478170d68eecb6a3ce3ef84d.tar.xz
noscript-9f67a125b8275067478170d68eecb6a3ce3ef84d.zip
Fixed regression: framed documents' URLs not being reported in the UI.
Diffstat (limited to 'src')
-rw-r--r--src/bg/RequestGuard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bg/RequestGuard.js b/src/bg/RequestGuard.js
index db34f4b..3cbc8e6 100644
--- a/src/bg/RequestGuard.js
+++ b/src/bg/RequestGuard.js
@@ -301,7 +301,7 @@ var RequestGuard = (() => {
}
if (frameId === 0) return;
try {
- await Message.send("seen",
+ await Messages.send("seen",
{request, allowed, policyType},
{tabId, frameId: 0}
);