From d45209060fe4c03c37a3d0e3211e4d30a4beae14 Mon Sep 17 00:00:00 2001 From: hackademix Date: Sat, 28 Jul 2018 02:19:48 +0200 Subject: Fixed window.stop() called in empty suframes. --- src/content/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/content') diff --git a/src/content/content.js b/src/content/content.js index aea705e..b5905c8 100644 --- a/src/content/content.js +++ b/src/content/content.js @@ -104,7 +104,7 @@ async function init(oldPage = false) { document.URL, document.contentType, document.readyState, window.frameElement && frameElement.data); try { - let {canScript, shouldScript} = await browser.runtime.sendMessage({type: "canScript"}); + let {canScript, shouldScript} = await browser.runtime.sendMessage({type: "canScript", url: document.URL}); debug(`document %s, canScript=%s, shouldScript=%s, readyState %s`, document.URL, canScript, shouldScript, document.readyState); if (canScript) { if (oldPage) { -- cgit v1.2.3