aboutsummaryrefslogtreecommitdiff
path: root/content/content.js
diff options
context:
space:
mode:
Diffstat (limited to 'content/content.js')
-rw-r--r--content/content.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/content.js b/content/content.js
index feef5db..c501187 100644
--- a/content/content.js
+++ b/content/content.js
@@ -74,7 +74,7 @@ globalThis.haketilo_content_script_main = async function() {
const policy = decide_policy(globalThis.haketilo_pattern_tree,
document.URL,
- globalThis.haketilo_defualt_allow,
+ globalThis.haketilo_default_allow,
globalThis.haketilo_secret);
const page_info = Object.assign({url: document.URL}, policy);
["csp", "nonce"].forEach(prop => delete page_info[prop]);
@@ -93,7 +93,7 @@ globalThis.haketilo_content_script_main = async function() {
resolve_page_info(Object.assign(page_info, script_response));
return;
} else {
- for (const script_contents of script_response) {
+ for (const script_contents of script_response.files) {
const html_ns = "http://www.w3.org/1999/xhtml";
const script = document.createElementNS(html_ns, "script");