summaryrefslogtreecommitdiff
path: root/ext/js/background
diff options
context:
space:
mode:
authorpraschke <stel@comfy.monster>2023-10-29 16:08:53 +0000
committerpraschke <stel@comfy.monster>2023-10-29 16:08:53 +0000
commit9c003ec233136690c4efcee15341352400ce145d (patch)
treec04b5cd89a3ecae9f0bc6efdb8ae644ffdc62c0a /ext/js/background
parent55897b2b29e88ffd0c9140d03b9e74c4a94d98bd (diff)
remove webRequest from chrome for real
Diffstat (limited to 'ext/js/background')
-rw-r--r--ext/js/background/request-builder.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/background/request-builder.js b/ext/js/background/request-builder.js
index 663e242b..bf770964 100644
--- a/ext/js/background/request-builder.js
+++ b/ext/js/background/request-builder.js
@@ -313,7 +313,7 @@ class RequestBuilder {
await this._updateDynamicRules({addRules});
try {
- return await this._fetchInternal(url, init, null);
+ return await fetch(url, init);
} finally {
await this._tryUpdateDynamicRules({removeRuleIds: [id]});
}